-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (46 loc) · 788 Bytes
/
style.css
File metadata and controls
54 lines (46 loc) · 788 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
* {
padding: 0px;
margin: 0px;
}
body {
background-color: brown;
display: grid;
justify-content: center;
align-items: center;
text-align: center;
}
#title {
border: 1px solid black;
background-color: white;
justify-self: center;
width: min-content;
margin-top: 10px;
}
#title h1 {
width: 200px;
}
table {
margin-top: 20px;
width: 500px;
height: 500px;
}
td {
width: 33%;
height: 33%;
border: 2px solid black;
}
button {
width: 100%;
height: 100%;
}
#mensVitDiv {
background-color: white;
justify-self: center;
width: min-content;
margin-top: 10px;
}
#mensVit {
font-size: 30px;
font-weight: bold;
width: 400px;
}