-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (124 loc) · 2.49 KB
/
style.css
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* All the CSS is now here */
#radio {
font-family: Arial;
}
#body {
position: absolute;
top: 50px;
width: 200px;
height: 100px;
left: calc(50vw - 115px);
margin-left: auto;margin-right: auto;
border-radius: 15px;
background-color: #d9d9d9;
text-align: center;
}
#leftcircle {
position: absolute;
left: calc(50vw - 100px);
top: 88px;
background-color: #000000;
border: 3px solid white;
border-radius: 50%;
width: 40px;
height: 40px;
}
#rightcircle {
position: absolute;
left: calc(50vw + 30px);
top: 88px;
background-color: #000000;
border: 3px solid white;
border-radius: 50%;
width: 40px;
height: 40px;
}
#station {
width:40px;
background-color: #000000;
letter-spacing: -2.5px;
padding: 5px;
position: absolute;
left: calc(50vw - 40px);
top: 98px;
text-align: center;
color:#878787;
}
#antennae {
width:75px;
background-color: #ffffff;
height: 5px;
transform: rotate(-45deg);
position: absolute;
left: calc(50vw - 37.5px);
top: 30px;
}
main {
background: rgb(2,0,36);
background: linear-gradient(328deg, #020224 0%, #090979 40%, #006eff 100%); /* #006eff used to be #0039FF */
margin: auto;
max-width: 500px;
width:100%;
border-radius: 15px;
border-color: white;
border-width: 2px;
border-style: solid;
}
#elements {
margin: 10px;
color: #ffffff;
}
body {
font-family: sans-serif;
background: rgb(11, 11, 11);
color: white;
}
a {
color: #ffffff;
text-decoration:none;
font-family: 'Courier New', Courier, monospace
}
input#searchbar {
font-family: sans-serif;
background: rgb(2,0,36);
background:linear-gradient(328deg, #000000 0%, #232323 40%, #444444 100%);;
margin: auto;
max-width: 480px;
width:90%;
border-radius: 5px;
border-color: white;
border-width: 2px;
border-style: solid;
padding:7.5px;
color: #ffffff;
text-decoration:none;
transition: all 0.8s;
}
input#searchbar:hover {
font-family: sans-serif;
background: rgb(2,0,36);
background:linear-gradient(328deg, #111111 0%, #333333 40%, #555555 100%);;
margin: auto;
max-width: 480px;
width:90%;
border-radius: 5px;
border-color: white;
border-width: 2px;
border-style: solid;
padding:7.5px;
color: #ffffff;
text-decoration:none;
transition: all .5s;
}
input#searchbar:focus {
-webkit-box-shadow: 0px 0px 21px 10px rgba(255,255,255,0.15);
-moz-box-shadow: 0px 0px 21px 10px rgba(255,255,255,0.15);
box-shadow: 0px 0px 21px 10px rgba(255,255,255,0.15);
transition: all .5s;
}
button {
color: #082cdd
}
.spacer {
height: 20px;
}