-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
97 lines (83 loc) · 1.43 KB
/
stylesheet.css
File metadata and controls
97 lines (83 loc) · 1.43 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
display: flex;
flex-flow: row wrap;
color: white;
}
.top {
display: flex;
flex: 1 100%;
background-color: turquoise;
height: 50vh;
margin: auto 0;
}
h1 {
margin: auto;
padding-top: 5%;
padding-bottom: 5%;
font-size: 50px;
font-weight: lighter;
}
.bottom {
height: 50%;
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-evenly;
text-align: center;
padding: auto;
height: 50vh;
background-color: black;
}
.box {
height: 25px;
width: 140px;
margin: auto;
}
.title {
padding: 60px 30px 20px 30px;
width: 200px;
}
.header {
font-size: 30px;
padding-top: 20px;
}
#box1 {
background-color: royalblue;
}
#box2 {
background-color: orangered;
}
#box3 {
background-color: turquoise;
}
@media (max-width: 576px) {
body {
width: 100%;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
}
.bottom {
background-color: rgb(224, 217, 217);
color: black;
display: flex;
flex-direction: column;
flex: 4;
justify-content: space-evenly;
text-align: center;
}
.top {
background-color: blue;
}
.title {
margin: auto;
}
h1 {
padding: 100px 60px 100px 60px;
}
}