-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
81 lines (72 loc) · 1.11 KB
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,
html {
border: none;
width: 100vw;
height: 100vh;
background-color: #333639;
font-family: "Poppins", Poppins, sans-serif;
color: white;
}
iframe {
border: none;
height: 100%;
width: min(100%, 100vw);
}
ul {
list-style: none;
display: flex;
flex-wrap: wrap;
}
li {
padding: 10px;
text-align: center;
}
li:last-child {
position: absolute;
right: 0;
margin-right: 0.5rem;
}
/* Underline styles */
a {
text-decoration: none;
color: inherit;
display: block;
position: relative;
padding: 0.2em 0;
}
/* Fade in */
a::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 0.1em;
background-color: white;
opacity: 0;
transition: opacity 300ms, transform 300ms;
}
a:hover::after,
a:focus::after {
opacity: 1;
transform: translate3d(0, 0.2em, 0);
}
@media only screen and (max-width: 600px) {
body {
justify-content: center;
width: auto;
height: 100vh;
}
ul {
justify-content: center;
}
li:last-child {
position: relative;
margin-right: 0;
}
}