-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (59 loc) · 1.13 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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style-type: none;
text-decoration: none;
}
html{
font-size: 62.25%;
}
body {
color: azure;
text-align: center;
background-color:rgb(29, 28, 28);
font-family: 'Roboto Mono', monospace;
position: relative;
height: 100vh;
}
h2{
padding: 5rem 0;
}
.container{
font-size: 1.72rem;
padding: 4rem 2rem;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgb(212, 210, 207);
border-radius: 1rem;
}
.container ul li{
padding: 1rem 0;
}
.container ul li a{
display: inline-block;
color: #555;
transition: all .2s ease-in-out;
}
.container ul li a:hover{
color: black;
transform: scale(1.1);
font-weight: 700;
}
footer {
background-color: #000;
padding: 1rem;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
font-weight: 400;
}
footer a{
color: #555;
font-weight: 700;
text-decoration: underline;
}