-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
59 lines (55 loc) · 1 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
html, body {
overflow-x: hidden;
font-family: 'TheGoodMonolith', sans-serif;
background-color: #1a1c22;
color: #29D398;
}
.ans {
padding: 1em;
background-color: #232530;
border: 5px solid #29D398;
color: #29D398;
font-size: 1.5em;
/*width: 30%;*/
}
section {
padding: 2em;
display: flex;
flex-direction: column;
justify-content: center;
margin: 0 auto;
width: 65%;
/*position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%)*/
}
h1 {
font-size: 2em;
}
h2 {
font-size: 1.3em;
}
.button {
background-color: #232530;
box-shadow: 0.5rem 0.5rem #29D398;
border: 0;
padding: 0.5em;
font-family: 'TheGoodMonolith', sans-serif;
font-size: 1em;
color: #29D398;
}
.button:active {
box-shadow: 0.3rem 0.3em #29D398;
}
@keyframes move {
to {
background-position: 1000vh;
}
}
@media screen and (max-width: 800px) {
section {
width: 85%;
}
}