-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (46 loc) · 905 Bytes
/
style.css
File metadata and controls
49 lines (46 loc) · 905 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
.navbar {
overflow: hidden;
background-color: #333;
position: sticky;
top: 0;
width: 100%;
z-index: 5
}
.navbar a {
float: left;
font-size: 16px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.navbar a:hover{
background-color: rgb(99, 99, 99);
}
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
font-size:130%;
color:rgb(255, 255, 255);
background-color:rgb(99, 99, 99) ;
}
a {
color: white;
}
.app {
background: rgb(43, 43, 43);
padding: 20px 20px;
margin-bottom: 20px;
overflow: hidden;
}
table, th, td {
border: 1px solid rgb(255, 255, 255);
border-collapse: collapse;
}
th, td {
padding: 15px;
}
table.center {
margin-left: auto;
margin-right: auto;
}