-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (104 loc) · 1.96 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
* {
margin: 0;
padding: 0;
}
body {
background-color: #EDB7ED;
font-family: 'Roboto', sans-serif;
font-size: 1.5em;
color: white;
overflow-x: hidden;
}
.wrapper {
position: relative;
}
.preload {
position: absolute;
left: 0;
top: 0;
visibility: hidden;
}
#content {
margin: 2vh auto;
width: 80vw;
}
h1 {
text-align: center;
font-size: 3em;
font-weight: bold;
}
h2 {
text-align: center;
font-weight: bold;
font-size: 1.5em;
}
hr {
border-bottom: 6px dashed white;
border-top: none;
border-left: none;
border-right: none;
}
#counter-container {
text-align: center;
font-weight: bold;
margin: 64px 0;
}
#counter-container>p {
text-shadow: #9d88d3 0 0 10px, #9d88d3 0 0 10px, #9d88d3 0 0 10px, #9d88d3 0 0 10px, #9d88d3 0 0 10px;
}
#local-counter {
color: #574f84;
font-size: 0.75em;
}
#counter-button {
background-color: #574f84;
border: none;
border-radius: 16px;
color: white;
padding: 16px 32px;
text-decoration: none;
font-size: 1em;
font-family: 'Roboto', sans-serif;
font-weight: bold;
margin-top: 16px;
position: relative;
overflow: hidden;
box-shadow: 6px 7px 40px -4px rgba(0, 0, 0, 0.2);
}
#counter-button:hover {
background-color: #2d2463;
}
#counter-button span {
position: absolute;
border-radius: 50%;
background-color: #ffffff50;
width: 100px;
height: 100px;
margin-top: -50px;
margin-left: -50px;
animation: ripple 1s;
opacity: 0;
}
#footer {
background-color: white;
color: black;
padding: 16px 10vw;
display: flex;
gap: 16px;
align-items: center;
justify-content: center;
}
.footer-icon {
display: inline-block;
vertical-align: middle;
font-size: 2em;
}
#github-footer-icon {
color: #000000;
}
.footer-icon-text {
display: inline-block;
vertical-align: middle;
font-weight: bold;
margin-left: 6px;
}