-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
78 lines (65 loc) · 1.09 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
html {
font-size: 62.5%;
box-sizing: border-box;
height: 100dvh;
width: 100vw;
}
* {
margin: 0;
padding: 0;
box-sizing: inherit;
}
body {
width: 100%;
height: 100%;
background: url(./images/viking-ship-large.jpg) rgb(29, 36, 36);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
font-family: serif;
font-size: 1.8rem;
text-transform: uppercase;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
transition: all 300ms;
}
.container {
margin-top: 20%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
h1 {
margin-bottom: 1rem;
}
ul {
list-style-type: none;
}
ul li {
margin-top: 0.5rem;
font-weight: 700;
letter-spacing: 1.3px;
}
a:link,
a:visited {
color: inherit;
text-decoration: none;
}
a:hover,
a:active {
cursor: pointer;
text-decoration: underline;
color: #aaa;
}
p {
text-align: center;
background-color: #333;
opacity: 0.7;
color: #fff;
display: inline-block;
padding: 2rem;
width: 100%;
}