-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsif.css
More file actions
80 lines (75 loc) · 1.45 KB
/
responsif.css
File metadata and controls
80 lines (75 loc) · 1.45 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
@media (max-width: 1080px){
.image{
flex: 100%;
max-width: 480px;
}
.container{
margin: 30px;
margin-left: 60px;
}
.more .read-more{
color: #313131;
padding: 10px 24px;
background: #f1f1f1;
text-decoration: none;
border-radius: 12px;
transition: .6s;
margin-left: 50px;
}
}
@media (max-width: 868px) {
body.disabledScroll{
overflow: hidden;
}
.icon{
display: block;
height: 50px;
width: 50px;
text-align: center;
line-height: 50px;
border-radius: 50%;
z-index: 9;
}
.icon.cancel-btn{
display: none;
}
.icon.cancel-btn.show{
display: block;
}
.icon.hide{
display: none;
}
.navbar .menu-list{
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
background: #222;
display: block;
padding: 40px 0;
text-align: center;
clip-path: circle(25px at calc(100% - 55px) calc(0% + 50px));
transition: all 0.3s ease;
}
.navbar.sticky .menu-list{
clip-path: circle(25px at calc(100% - 55px) calc(0% + 35px));
}
.navbar .menu-list.active{
clip-path: circle(75%);
}
.navbar .menu-list li{
margin-top: 45px;
}
.navbar .menu-list li a{
font-size: 23px;
}
}
@media (max-width: 400px){
.image .details p{
font-size: 16px;
}
.more .read-more, .more .icon-links a i{
font-size: 18px;
}
}