-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (77 loc) · 1.18 KB
/
style.css
File metadata and controls
78 lines (77 loc) · 1.18 KB
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
*{
padding: 0;
margin: 0;
font-family: century gothic;
}
header{
background-image:linear-gradient(rgba(0, 0, 0, 0.5),rgba(0, 0, 0, 0.5)),url(../moon.jpg);
height:100vh;
background-size:cover;
background-position: center;
}
ul{
float:right;
list-style-type: none;
margin-top:25px;
}
ul li{
display:inline-block;
}
ul li a {
text-decoration: none;
padding:5px 20px ;
color:white;
border: 1px solid transparent;
transition:0.7s ease;
}
ul li a:hover{
background-color:white;
color:black;
}
ul li.active a{
background-color:white;
color:black;
}
.logo{
position:absolute;
top:1%;
left:0%;
transform: translate(0%,-20%);
}
.logo h3{
border:2px solid white;
color:white;
padding:5px 15px;
margin-top: 5px;
}
.main{
max-width: 1200px;
margin:auto;
}
.title{
position:absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.title h1{
font-size: 60px;
color:white;
}
.button{
position:absolute;
top: 62%;
left: 50%;
transform: translate(-50%,-50%);
}
.btn{
border:1px solid white;
padding:10px 30px;
color:white;
text-decoration:none;
transition:0.6s ease
}
.btn:hover{
background-color:white;
color:black;
}