-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
65 lines (56 loc) · 1.09 KB
/
main.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
.main_background {
background-image: url("../img/background.jpg");
height: 700px;
width: 100%;
}
.green_box {
width: 30%;
height: 600px;
background-color: rgb(19, 204, 90);
padding-top: 100px;
}
h1, h2, h3 {
text-align: center;
}
.header_block {
flex-direction: column;
justify-content: center;
align-items: center;
padding-left: 33%;
}
.mybutton {
width: 200px;
height: 50px;
text-align: center;
vertical-align: middle;
color: white;
background-color: darkgreen;
margin-bottom: 30px;
border-radius: 10px;
padding-top: 30px;
}
.main_block {
display: flex;
justify-content: center;
align-items: center;
}
table {
width: 30%;
border-spacing: 30px;
}
td {
border: 2px solid;
border-color: darkgreen;
border-radius: 10px;
height: 200px;
text-align: center;
width: 33%;
}
.main_footer {
width: 100%;
height: 90px;
background-color: darkgreen;
color: white;
text-align: center;
padding-top: 5px;
}