-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (87 loc) · 1.28 KB
/
Copy pathstyle.css
File metadata and controls
89 lines (87 loc) · 1.28 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
79
80
81
82
83
84
85
86
87
*{
padding: 0;
margin: 0;
}
.wrapper{
background : url(bg-img.jpg) no-repeat;
background-size : cover;
height : 100vh;
}
.navbar{
height:80px;
width:100%;
background:rgba(0,0,0,0.4);
}
.logo{
width:140px;
height:60px;
padding:20px 100px;
}
.navbar ul{
float:right;
margin-right:20px;
}
.navbar ul li{
list-style:none;
margin:0 8px;
display:inline-block;
line-height:80px;
}
.navbar ul li a{
text-decoration:none;
color:white;
font-size:20px;
padding:6px 13px;
font-family: 'Roboto',sans-serif;
transition: .4s;
}
.navbar ul li a.active,
.navbar ul li a:hover {
background: red;
border-radius: 2px;
}
.wrapper .center {
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
font-family:sans-serif;
user-select:none;
}
.center h1{
color:black;
font-size:70px;
font-weight:bold;
width:900px;
text-align:center;
}
.center h2{
color:black;
font-size:70px;
font-weight:bold;
width:885px;
margin-top:10px;
text-align:center;
}
.center .buttons{
margin:35px 285px;
}
.buttons button{
height:50px;
width:150px;
font-size:18px;
font-weight:bold;
color:#ffb3b3;
background:red;
border:1px solid;
outline:none;
cursor:pointer;
border-radius:25px;
transition: .5s;
}
.buttons .btn{
margin-left:25px;
}
.buttons button:hover{
background:#cc0000;
}