-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
131 lines (126 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
130
131
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600&display=swap");
@import url(css/themes.css);
body {
font-family: "Poppins";
background: var(--bgcolor);
color: white;
text-shadow: 0 0 30px black;
}
h1 {
font-size: 30px;
text-shadow: 0 0 30px black;
color: var(--txtcolor);
text-align: center;
}
#start-button {
position: absolute;
top: 35%;
left: 41.5%;
font-family: 'Quicksand', sans-serif;
border: none;
border-radius: 1vw;
color: white;
font-size: 2vw;
font-weight: 600;
padding: 1.2vw 3vw;
cursor: pointer;
user-select: none;
background-color: #454eb5;
z-index: 1;
transition: all .2s ease-in-out;
}
#start-button:hover {
color: white;
background-color: #f25757;
}
#start-button:active {
background-color: #f25757;
}
a {
font-family: 'Poppins', sans-serif;
color: var(--txtcolor);
font-size: 20px;
text-decoration: none;
text-shadow: 0 0 30px white;
margin-top: -1px;
}
a.intro {
background-color: #454eb5;
background-position: 10px;
border-radius: 5px;
font-family: 'Poppins', sans-serif;
color: #d4cfcf;
font-size: 18px;
text-decoration: none;
transition: 1s;
}
a.intro:hover {
background-color: #f25757;
cursor: pointer;
color: white;
box-shadow: 0px 15px 20px rgba(242, 87, 87, 0.2);
}
#gsearchbar {
outline: none;
width: 374px;
font-size: 16px;
border: 1px solid rgba(0, 0, 0, 0.3);
padding: 12px;
margin-bottom: 10px;
transition: 0.2s ease;
border-radius: 10px;
}
#gsearchbar:focus {
background-color: #eee;
box-shadow: inset 0 0 5px 1px rgba(0, 0, 0, 0.4);
}
#glist a {
display: block;
text-decoration: inherit;
color: var(--txtcolor);
font-size: 18px;
margin-top: -1px;
padding: 12px;
transition: 0.2s ease;
}
#glist a:hover {
border-radius: 19px;
background-color: #eee;
box-shadow: inset 0 0 5;
}
#glist {
overflow-x: hidden;
overflow-y: scroll;
width: 400px;
height: 520px;
padding: 0;
text-align: center;
}
.box {
border-radius: 10px;
margin: auto;
background-color: #242424;
padding: 10px;
width: 400px;
}
.segregationjoke {
background: black;
border-radius: 10px;
}
.container {
padding: 20px;
}
#themepicker {
font-family: 'Quicksand', sans-serif;
text-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
color: var(--color);
background-color: black;
border-color: var(--color);
width: 150px;
height: 30px;
border-style: solid;
border-radius: 8px;
font-size: 18px;
transition-timing-function: ease-in-out;
transition: 1s;
}