-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (58 loc) · 1.16 KB
/
styles.css
File metadata and controls
67 lines (58 loc) · 1.16 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.header,
.footer {
width: 100%;
background: #0000FF;
height: 100px;
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
color: #FFFFFF;
display: flex;
justify-content: flex-start;
padding: 35px 35px 35px 30px;
}
.footer {
display: flex;
justify-content: space-between;
}
.container {
width: 100%;
display: flex;
flex-wrap: wrap;
padding: 23px;
gap: 20px;
justify-content: center;
align-items: center;
}
.section {
height: 165px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
border: 5px solid #000000;
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
font-weight:bold;
text-align: center;
padding: 30px;
}
@media only screen and (max-width: 391px) {
.section {
margin-bottom: 20px;
}
}
@media only screen and (min-width: 391px) {
.container {
padding:110px;
}
.section {
height: 300px;
width: 46%;
font-size: 50px;
}
}