forked from leanprover-community/queueboard-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (65 loc) · 1.35 KB
/
style.css
File metadata and controls
77 lines (65 loc) · 1.35 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
a {
all: unset;
}
/* Underline links, but not in headings or inside tables */
a:not(table a, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a) {
text-decoration: underline;
}
a:hover {
text-decoration: underline;
cursor: pointer;
}
table {
border-collapse: collapse;
border-spacing: 0;
border-width: 1px;
border-style: solid;
border-color: #ccc;
margin: 25px 0;
font-family: sans-serif;
min-width: 400px;
}
table thead tr {
background-color: #709080;
color: #fff;
text-align: left;
}
table th, table td {
padding: 12px 15px;
}
table tbody tr {
border-bottom: 1px solid #dddddd;
}
table tbody tr:nth-of-type(even) {
background-color: light-dark(#eee, #111);
}
table tbody tr:last-of-type {
border-bottom: 2px solid #709080;
}
table tbody tr:hover {
color: #709080;
}
span.label {
border-radius: 5px;
border-width: 1px;
border-style: solid;
display: inline-block;
margin-bottom: 4px;
margin-right: 4px;
padding: 5px;
font-size: 0.9em;
}
.btn-group button {
background-color: #04AA6D; /* Green background */
border: 1px solid green; /* Green border */
border-radius: 12px;
color: white; /* White text */
font-size: 120%;
padding: 10px 44px; /* Some padding */
cursor: pointer; /* Pointer/hand icon */
/* float: left; Float the buttons side by side */
}
/* Add a background color on hover */
.btn-group button:hover {
background-color: #3e8e41;
}