-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
67 lines (59 loc) · 970 Bytes
/
index.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
body {
background-color: black;
}
p {
color: white;
font-family: 'Cuprum', sans-serif;
font-size: 2.5rem;
line-height: 1.5;
word-spacing: 0.2rem;
}
a {
color: white;
font-family: 'Cuprum', sans-serif;
font-size: 2.5rem;
text-decoration: none;
line-height: 1.5;
}
a:hover {
text-decoration: underline;
cursor: pointer;
}
.logo {
height: 110px;
margin: 1rem;
background: url("logo.png");
background-repeat: no-repeat;
background-size: 15rem;
background-position: left;
}
.content {
display: block;
margin: 0 auto;
width: intrinsic;
width: -moz-max-content;
width: -webkit-max-content;
width: max-content;
position: relative;
}
.box {
display: flex;
flex-direction: column;
justify-content: center;
height: 24rem;
}
.footer {
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
display: flex;
}
.copyright {
color: white;
font-family: 'Cuprum', sans-serif;
text-align: right;
margin-right: 1rem;
width: 100%;
}