-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (45 loc) · 709 Bytes
/
style.css
File metadata and controls
54 lines (45 loc) · 709 Bytes
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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
padding-top: 100px;
display: flex;
justify-content: center;
background-color: #F9EFDC;
}
button:hover {
cursor: pointer;
}
main {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
table {
width: 80%;
}
th, td {
width: 30vw;
min-width: 125px;
height: 10vh;
text-align: left;
border: 1px solid black;
padding: 15px;
}
th {
background-color: #F6E7CB;
}
td {
background-color: #FCF7EE;
}
.addButton {
margin-top: 20px;
padding: 20px 40px;
}
.readButton, .deleteButton {
margin-top: 5px;
padding: 5px 10px;
}