-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (67 loc) · 1.19 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
62
63
64
65
66
67
*{
margin: 0;
padding: 0;
font-family: cursive;
box-sizing: border-box;
}
body{
width: 100%;
height: 100vh;
padding: 0px;
position: relative;
background-image: url('backimage.png');
background-position: center;
background-size: cover;
}
header{
padding: 50px;
font-size: 30px;
color: white;
}
header span{
margin-left: 10px;
}
header ul{
float: right;
list-style: none;
}
header ul li{
display: inline-block;
padding: 5px 20px;
border-radius: 5px;
}
header ul li a{
text-decoration: none;
color: white;
}
header ul li:nth-child(1){
background-color: black;
}
header ul li:hover{
background-color: black;
font-size: 32px;
}
main{
text-align: center;
padding-top: 200px;
text-decoration: none;
}
main p{
font-size: 35px;
}
main button{
background-color: #7db338;
color: white;
padding: 10px 30px;
cursor: pointer;
margin-top: 15px;
font-size: 20px;
border-radius: 10px;
border: none;
outline: none;
text-decoration: none;
}
main button:hover{
font-size: 22px;
background-color: black;
}