-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesTable.css
78 lines (68 loc) · 1.27 KB
/
stylesTable.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
body {
background-color: #a1f1ff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
}
.header {
background-color: #f7f7f7;
padding: 10px;
width: 100%;
box-sizing: border-box;
position: fixed;
top: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
}
.header img {
width: 70px;
height: 70px;
border-radius: 50%;
margin-right: 10px;
}
.header h1 {
display: inline-block;
margin: 0;
vertical-align: middle;
}
.container {
text-align: center;
margin-top: 100px;
width: 80%;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
.button {
display: inline-block;
padding: 10px 20px;
background-color: #d3d3d3;
border: none;
border-radius: 5px;
text-decoration: none;
color: #000;
font-size: 18px;
cursor: pointer;
}
.male {
background-color: #90caf9;
}
.female {
background-color: #f48fb1;
}