-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (52 loc) · 867 Bytes
/
style.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
body{
background-color: #d0e6ff;
font-family: Verdana, sans-serif;
}
main{
background-color: white;
margin: 3em auto 3em auto;
width: 50%;
padding: 3em;
}
p{
margin-top: 2em;
margin-bottom: 1em;
font-size: 1.5em;
}
button{
padding: .5em;
font-size: xx-large;
background-color: #eaffce;
margin-top: 1em;
margin-bottom: 1em;
}
button:hover{
background-color: lightblue;
transition: .25s;
}
th, td{
padding: 5px 10px;
text-align: left;
}
td{
border-bottom: solid black 1px;
}
th{
text-transform: uppercase;
border-bottom: 2px solid #111111;
border-top: 1px solid #999;
text-align: left;
}
tr{
text-align: right;
}
td.row-name{
text-align: left;
}
tr.even{
background-color: lightgray;
}
tr:hover{
background-color: #c3e6e5;
transition: .25s;
}