-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatstyle.css
More file actions
72 lines (59 loc) · 1.07 KB
/
Copy pathstatstyle.css
File metadata and controls
72 lines (59 loc) · 1.07 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
body {
margin:0;
background-image: url(back31.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
.container1 {
margin-top: 11.5vh;
display: flex;
flex-flow: row wrap;
}
.container1 .parent10 {
background-color: rgba(250,250,250,0.8);
width: 21%;
height: 50%;
margin-top: 2%;
margin-right: 3%;
}
.container1 .parent10:first-of-type {
margin-left: 4%;
}
.container1 .parent10 div {
width: 100%;
background-color: rgba(130,130,130,0.8);
margin-bottom: 1px;
text-align: center;
}
.container1 .parent10 div:last-of-type {
margin-bottom: 0;
}
/*Media Queries*/
/*Tablets*/
@media screen and (max-width: 1100px) {
.container1 {
margin-top: 0px;
}
.container1 .parent10 {
width: 42%;
margin-left: 4%;
margin-right: 4%;
}
}
/*Mobiles*/
@media screen and (max-width: 630px)
{
.container1 {
flex-flow: column;
align-items: center;
}
.container1 .parent10 {
width: 80%;
margin:0;
margin-top: 5%;
}
.container1 .parent10:first-of-type {
margin-left: 0;
}
}