forked from Techtonica/curriculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
52 lines (46 loc) · 777 Bytes
/
index.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
body {
margin-left: 2em;
margin-right: 2em;
}
header {
/* For more about flexbox, see https://css-tricks.com/snippets/css/a-guide-to-flexbox/ */
display: flex;
align-items: center;
}
header img {
height: 64px;
margin-right: 1em;
}
/* User table */
#users {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
width: 100%;
}
#users td,
#users th {
border: 1px solid #ddd;
padding: 8px;
}
#users tr:nth-child(even) {
background-color: #f2f2f2;
}
#users tr:hover {
background-color: #ddd;
}
#users th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #5dd2ec;
color: black;
}
fieldset {
border: none;
margin: 1rem 0;
}
footer {
margin-top: 1rem;
font-size: small;
color: gray;
}