-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
156 lines (156 loc) · 2.39 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#title {
padding: 2%;
margin: 2%;
font-family: "Della Respira";
font-size: 50px;
text-align: center;
color: lavender;
}
#mainPage {
width: 100%;
height: 100%;
font-family: "Della Respira";
font-size: 13px;
background-color: #262626;
}
body {
height: 100%;
margin-bottom: -142px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
ul {
margin: 30px auto;
text-align: center;
}
li {
list-style: none;
position: relative;
display: inline-block;
margin: 1%;
width: 100px;
height: 100px;
}
@keyframes rotate {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(-360deg);
}
}
.round {
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
padding: 30px;
text-decoration: none;
text-align: center;
font-size: 25px;
text-shadow: 0 1px 0 rgba(255, 255, 255, .7);
letter-spacing: -.065em;
font-family: "Della Respira";
transition: all .25s ease-in-out;
box-shadow: 2px 2px 7px rgba(0, 0, 0, .2);
border-radius: 300px;
z-index: 1;
border-width: 4px;
border-style: solid;
}
.round:hover {
width: 130%;
height: 130%;
left: -15%;
top: -15%;
font-size: 33px;
padding-top: 38px;
box-shadow: 5px 5px 10px #000000;
z-index: 2;
transform: rotate(-360deg);
}
a.red {
background-color: #fe0006;
color: #000000;
border-color: #B30005;
}
a.red:hover {
color: #ff1f25;
}
a.blue {
background-color: #114CBF;
color: #000000;
border-color: #072B73;
}
a.blue:hover {
color: #3464C3;
}
a.yellow {
background-color: #fffD00;
color: #000000;
border-color: #D8D700;
}
a.yellow:hover {
color: #FFFE54;
}
.round span.round {
display: block;
opacity: 0;
transition: all .5s ease-in-out;
font-size: 1px;
border: none;
padding: 40% 20% 0 20%;
}
.round span:hover {
opacity: .85;
font-size: 16px;
}
.blue span {
background: #114CBF;
color: #fff;
text-shadow: 0 .5px .5px #000;
}
.red span {
background: #fe0006;
color: #fff;
text-shadow: 0 .5px .5px #fff;
}
.yellow span {
background: #fffD00;
color: #000;
text-shadow: 0 .5px .5px #fff;
}
#resultSpot {
color: #fff;
padding: 2%;
text-align: center;
}
.resultTitle {
margin-bottom: 0;
padding-bottom: 0;
color: #262626;
font-size: 20px;
}
.resultSnip {
color: #262626;
font-size: 15px;
}
.goToWiki {
font-size: 15px;
font-family: "Della Respira";
color: #262626;
}
.resultWell {
padding: 2%;
margin: 2% 20%;
}
#footerText {
font-family: "Caveat Brush";
font-size: 20px;
color: lavender;
}