-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (51 loc) · 992 Bytes
/
style.css
File metadata and controls
61 lines (51 loc) · 992 Bytes
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
body{
margin: 0px;
padding: 0px;
}
.hero-header{
text-align: center;
font-size: 20px;
background-color: rgb(255, 208, 0);
width: 100%;
height: 100%;
padding: 50px;
margin: 0px;
}
ul li{
list-style-type: none;
display: inline-block;
padding: 9px 20px;
margin: 0px 4px;
background-color: rgb(12, 12, 12, 0.1);
border: 4px solid rgb(255, 208, 0);
}
li a{
color: rgb(10, 10, 10);
text-decoration: none;
font-family:Verdana, Geneva, Tahoma, sans-serif;
font-size: medium;
font-weight: 550;
}
ul li:hover{
background-color:rgb(255, 208, 0);
border: none;
color: rgb(14, 14, 13);
}
ul li a:hover{
color: rgb(15, 15, 15);
}
.nav-container{
padding: 15px;
background-color: rgba(218, 218, 218, 0.5);
}
.others{
float: right;
}
.others:nth-last-child(5){
margin: 0px 70px 0px 0px;
}
.content{
background-color: rgb(255, 208, 0, 0.6);
width: 100%;
height: 100vh;
}