-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (52 loc) · 825 Bytes
/
style.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.title{
text-transform: uppercase;
font-weight: 600;
}
.items-1{
margin-left: 1%;
margin-right: 1%;
}
sec{
font-size: 13px;
color: gray;
}
.w-n{
color: teal;
}
.img{
height: 200px;
width: 300px;
}
.wap{
height: 20px;
background-color: teal;
filter: opacity(60%);
}
/* responsive CSS */
@media only screen and (max-width: 767px) {
.img{
width: 100%;
height: 350px;
}
}
@media only screen and (max-width: 585px) {
.img{
width: 100%;
height: 250px;
transform: translateY(-15px);
}
}
@media only screen and (min-width: 768px) {
.col-margin{
margin: 2px;
}
.main-row{
margin: 0!important;
padding: 0!important;
}
}