-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (62 loc) · 1.08 KB
/
style.css
File metadata and controls
69 lines (62 loc) · 1.08 KB
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
* {
box-sizing: border-box;
}
body {
display: grid;
background-color: #1c222b;
align-items: center;
height: 100vh;
justify-content: center;
font-family: monospace;
}
.title {
color: #19bc8b;
font-size: 10vw;
text-align: center;
}
.prng {
-webkit-transition: -webkit-transform 0.3s ease-in-out;
-moz-transition: -moz-transform 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.prng:hover {
color: #e9bc8b;
font-size: larger;
}
.link-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-top: -150px;
}
a {
color: #e9bc8b;
text-decoration: none;
text-transform: uppercase;
margin: 8px;
width: 80vw;
height: 50px;
text-align: center;
line-height: 50px;
border: 2px solid #19bc8b;
transition: 0.25s;
box-shadow: -0.3em -0.3em #e9bc8b;
font-weight: bold;
font-size: 15px;
}
a:hover {
color: #1c222b;
box-shadow: 0 0 0 0 #e9bc8b, inset 6em 3.5em 0 0 #e9bc8b;
border-color: #e9bc8b;
}
@media (min-width: 900px) {
.title {
color: #19bc8b;
font-size: 50px;
align-items: center;
}
a {
width: 200px;
}
}