-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
49 lines (49 loc) · 922 Bytes
/
main.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
.background{
background: url(image.jpg);
height:100%;
background-position:center;
background-size: cover;
position: relative;
color: #fff;
font-family: 'Bangers', cursive;
}
.middle{
position: absolute;
top: 50%;
left:50%;
transform: translate(-50%, -50%);
text-align: center;
}
h1 {
font-size: 200px;
font-weight:100;
}
body,html{
height:100%;
margin:0;
padding:0;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: rgb(255,255,255);
text-align: center;
padding: 14px 16px;
font-family: 'Bangers', cursive;
font-size: 17px;
margin: 10px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
.About{
float: right;
color: rgb(0, 0, 0);
text-align: center;
padding: 14px 16px;
font-family: 'Bangers', cursive;
font-size: 17px;
margin: 10px;
}