-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle_home.css
62 lines (52 loc) · 873 Bytes
/
style_home.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
html {
height: 100%;
margin: 0;
}
body {
color: white;
font-family: "Share Tech Mono", monospace;
background-image: url("./laptopbw.jpg");
background-size: cover;
background-position: center center;
background-attachment: fixed;
background-repeat: no-repeat;
background-color: black;
display: flex;
flex-direction: column;
min-height: 100%;
margin: 0;
}
h1 {
text-align: center;
font-size: 80px;
}
.center {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
height: 100%;
flex: 1;
}
ul {
text-align: center;
margin-top: 25px;
}
li {
list-style: none;
display: inline-block;
margin: 0px 25px;
}
a {
color: white;
text-decoration: none;
font-size: 20px;
transition: padding 0.25s;
}
a:hover {
padding: 0px 20px;
border-bottom: 2px solid white;
}
footer {
text-align: center;
}