-
Notifications
You must be signed in to change notification settings - Fork 1
/
4.declined.css
72 lines (62 loc) · 1.15 KB
/
4.declined.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
*{
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: rgba(255, 255, 255, 0);
padding: 0;
margin: 0;
border: 0;
}
a{
color: black;
text-decoration: none;
}
header{
text-align: left;
color: black;
background-color: rgba(255, 255, 255,0);
font-size: xx-large;
padding: 0.3em;
}
.app{
border: 2em solid rgba(0, 0, 0, 0.507);
}
table{
margin-top: 2.5em;
margin-left: 2em;
overflow-x: hidden;
text-align: left;
}
th{
padding: 0.5em;
border: 0em;
border-radius: 0.5em;
color: aliceblue;
background-color: #23242a;
}
td{
padding: 0.5em;
border: 0em;
border-radius: 0.5em;
}
.topnav {
background-color: rgb(26, 35, 39);
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 0.7em;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #04AA6D;
color: white;
}