-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
70 lines (59 loc) · 976 Bytes
/
styles.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
* {
box-sizing: border-box;
}
/* body {
background-color: #CDC0D1;
} */
img {
width: 200px;
border: 1px solid black;
}
th, td, tr, table {
/* border: 1px solid black;
border-collapse: collapse; */
font-family: 'Montserrat', sans-serif;
}
table {
width: 1300px;
}
td, th {
width: fit-content;
text-align: center;
letter-spacing: 1px;
padding-top: 15px;
font-size: 15pt;
}
th {
background-color: #AA1FDE;
color: white;
}
tr:nth-child(even) {
background-color: #F5E8F7;
}
tr:hover{
background-color: #949095;
color: white;
}
h1 {
text-align: center;
margin-top: 50px;
font-family: 'Josefin Sans', sans-serif;
font-size: 50pt;
}
div {
margin: auto;
margin-top: 20px;
width: fit-content;
}
input {
display: block;
height: 35px;
width: 175px;
border-radius: 5px;
padding: 10px;
}
button {
display: block;
margin-top: 10px;
width: 175px;
}