-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
128 lines (107 loc) · 1.99 KB
/
main.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<meta charset= "utf-8">
<meta name= "viewport" content= "width=device-width, initial-scale=1">
* {
box-sizing: border-box;
}
body {margin:0;}
h1 {
font-size: 50px;
text-align: center;
padding-top: 40px;
font-family: Verdana, Geneva, sans-serif;
}
h3 {
text-align: center;
font-family: Verdana, Geneva, sans-serif;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: greenyellow;
position: fixed;
top: 0;
width: 100%;
font-family: Verdana, Geneva, sans-serif;
}
li {
float: left;
}
li a {
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: dodgerblue;
}
.active {
background-color: dodgerblue;
}
h2 {
font-size: 30px;
font-family: Verdana, Geneva, sans-serif;
padding-left: 30px;
text-align: center;
background-color: dodgerblue;
}
h3 {
font-family: Verdana, Geneva, sans-serif;
padding-left: 30px;
}
article#left {
float: left;
text-align: center;
width: 60%
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 300px;
}
table, td, th {
border: 1px solid black;
}
table {
font-size: 20;
font-family: Verdana, Geneva, sans-serif;
border-collapse: collapse;
width: 60%;
margin-left: 25%;
margin-right: 25%
}
table#small {
font-size: 20;
font-family: Verdana, Geneva, sans-serif;
border-collapse: collapse;
width: 30%;
margin-left: 35%;
margin-right: 35%;
}
table#large {
font-size: 20;
font-family: Verdana, Geneva, sans-serif;
border-collapse: collapse;
width: 80%;
margin-left: 10%;
margin-right: 10%;
}
th {
text-align: center;
}
th, td {
padding: 6px;
}
tr:nth-child(even) {
background-color: lightyellow;
}
p {
font-size: 20;
font-family: Verdana, Geneva, sans-serif;
padding-left: 30px;
padding-right: : 30px;
}