-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
94 lines (77 loc) · 1.22 KB
/
Copy pathstyles.css
File metadata and controls
94 lines (77 loc) · 1.22 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
88
89
90
91
92
93
94
body{
background-color: #fff;
font: 16px tahoma, Avenir;
margin: 0px;
padding: 0px;
}
.main-header{
background-color: #f9ce1a;
padding: 5px;
text-align: left;
}
#showcase{
background-image: url("images/showcase.jpg");
background-position: bottom, left;
background-repeat: no-repeat;
background-size: cover;
padding: 100px;
}
.navbar{
background-color: #4b4b4b;
color: #black;
}
.navbar ul{
margin: 0px;
padding: 0.2em;
}
.navbar li{
display: inline;
}
.navbar a{
color: #fff;
text-decoration: none;
font-size: 18px;
padding-right: 1em;
}
.active {
height: 15px;
width: 15px;
background-color: #19c915;
border-radius: 50%;
display: inline-block;
}
.not-active {
height: 15px;
width: 15px;
background-color: #cc2424;
border-radius: 50%;
display: inline-block;
}
.waiting {
height: 15px;
width: 15px;
background-color: #ff7c11;
border-radius: 50%;
display: inline-block;
}
.button {
background-color: #4b4b4b;
color: #fff;
border: none;
}
.button:active{
background-color: #fff
}
#status-div {
margin: 5px;
margin-top: 10px;
padding: 5px;
padding-top: 0px;
border: solid 2px #4b4b4b;
}
#status-div > h2 {
margin-top: 0px;
}
footer{
text-align: center;
}