-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (41 loc) · 877 Bytes
/
style.css
File metadata and controls
46 lines (41 loc) · 877 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
.myDiv{
width: auto;
height: 190px;
margin: 5px;
color: #fff;
font-size: 80px;
padding: 50px;
}
@media screen and (max-width: 992px) {
.container{
margin-top: 40px;
}
.myDiv{
height: 150px;
margin: 5px;
color: #fff;
font-size: 70px;
padding: 35px;
}
}
@media screen and (max-width: 768px) {
.container{
padding-top: 80px;
}
.myDiv{
height: 120px;
margin: 3px;
color: #fff;
font-size: 60px;
padding: 30px;
}
}
@media screen and (max-width: 576px) {
.myDiv{
height: 80px;
margin: 3px;
color: #fff;
font-size: 50px;
padding: 15px;
}
}