-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (73 loc) · 1.47 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (73 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body {
margin: 0;
background-color: black;
font-family: Tahoma, Verdana, sans-serif;
overflow: hidden;
}
#container {
position: relative;
width: 1024px;
height: 768px;
margin: 0 auto;
border: 2px solid #0f0;
overflow: hidden;
}
#background {
position: absolute;
width: 100%;
height: 100%;
background:'Assets/Regular (XP) theme/windows_xp_46.png' center/cover no-repeat;
z-index: 0;
opacity: 1;
}
.selection-box {
position: absolute;
top: 100px;
left: 50px;
padding: 20px 40px;
background: linear-gradient(to bottom, #003300, #002200);
border: 2px solid lightgreen;
border-radius: 10px;
color: white;
opacity: 0.8;
z-index: 2;
cursor: pointer;
font-size: 20px;
transition: transform 0.2s;
}
.selection-box:hover {
transform: scale(1.05);
}
.title-container {
max-height: 300px;
overflow-y: auto;
scrollbar-width: thin;
}
.unwanted-border {
border: none !important;
}
.title:focus,
.title.selected {
background-color: darkgreen;
outline: 2px solid lightgreen;
color: white;
}
#searchbar {
position: absolute;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
width: 80%;
background: linear-gradient(to bottom, #cccccc, #999999);
border-radius: 10px;
padding: 10px;
z-index: 2;
}
#searchbar input {
width: 100%;
padding: 10px;
font-size: 18px;
border: none;
border-radius: 5px;
background: white;
}