-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (55 loc) · 919 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
/* * {
margin: 0px;
padding: 0px;
} */
body {
background-color: #eee;
}
#title-part {
color: yellowgreen;
}
.capital {
font-weight: bolder;
font-size: 24px;
}
h1 {
font-size: 35px;
}
h1, h2 {
text-align: center;
}
section.container {
background-color: #fff;
border: 10px solid indigo;
padding: 20px;
/* width vs max-width: Check resizing */
max-width: 800px;
/* margin: margin-top margin-right margin-bottom margin-left */
margin: 0 auto;
box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
}
th {
border: 2px solid grey;
}
td {
border: 1px solid grey;
}
table {
border-collapse: collapse;
text-align: center;
margin:auto;
margin-top: 0px;
}
td{
padding: 5px 10px;
}
th {
background-color: rgb(196, 196, 196);
}
#upleft {
background-color: #fff;
border: 0px;
}
.highlight {
background-color: yellow;
}