-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
50 lines (49 loc) · 886 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
background-color: black;
color: yellow;
padding: 5px;
}
body {
font-family: sans-serif;
}
h1 {
width: 430px;
margin: 20px auto;
padding: 5px 10px;
}
a:hover {
color: black;
background-color: white;
}
table {
background-color: yellow;
/* color: white; */
width: calc(100% - 40px);
margin: 20px auto;
font-weight: bold;
}
table, th, td {
/* border: 1px solid black; */
border-bottom: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 10px 20px;
}
.center {
text-align: center;
}
/* ------------------------------------ */
@media screen and (min-width: 360px){
h1 {
width: 360px;
margin: 10px auto;
font-size: 26px;
}
}