-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (62 loc) · 1.05 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
68
69
70
71
72
73
74
body{
background-image: url("hng.png");
background-size: cover;
background-repeat: no-repeat;
height: 500px;
font-family: "proxima-nova", "proxima-nova-all", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.menu-bar{
position: fixed;
color: white;
height: 100px;
width: 100%;
z-index: 900;
}
.namelogo{
float: left;
font-size: 40px;
color: white;
padding: 35px;
}
.navbar{
float: right;/*This makes the menu to be on the right side of the page*/
margin-top: 15px;
padding-top: 15px;
margin-right: 40px;
}
.menu{
list-style-type: none;
padding: 0;
overflow: hidden;
margin: 7.5px;
}
.menu>li{
float: left; /*This arranges the menu list from left to right order*/
}
.menu>li>a{
text-decoration: none;
position: relative;
color: white;
font-size: 22px;
display: block;
padding: 10px 15px;
}
.timer{
color:black;
position:relative;
top:265px;
left: 42%;
font-size: 40px;
}
.foot{
position: fixed;
color: white;
bottom: 10px;
width: 100%;
z-index: 900;
}
.footer{
float: right;
padding-top: 15px;
margin-right: 30px;
}