-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
122 lines (107 loc) · 1.84 KB
/
Copy pathresponsive.css
File metadata and controls
122 lines (107 loc) · 1.84 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/* v 3.2 */
@media (max-width: 800px) {
header nav {
position: fixed;
right: 0;
top: 0;
bottom: 0;
width: 0%;
background: var(--bg);
z-index: 1;
flex-flow: column;
justify-content: start;
align-items: start;
}
nav .logo{
padding: 1rem;
}
header nav ul{
padding: 0 !important;
gap: 0;
}
nav li{
margin: 0;
border-top: 1px solid rgba(128, 128, 128, 0.308);
text-align: left;
padding: 0;
}
section.static {
height: auto;
width: 90%;
margin: auto;
margin-top: 3rem;
position: relative;
overflow: hidden;
}
section.static img {
height: 100%;
width: 100%;
object-fit: contain;
object-position: top;
border-radius: 10px;
}
header nav ul {
display: flex;
flex-flow: column;
flex-wrap: nowrap;
width: 100%;
}
header nav li {
padding: 6px;
}
main {
padding: 2rem;
}
header {
justify-content: space-between;
}
header span#menu-btn {
display: block;
position: fixed;
top: 2rem;
left: 2rem;
}
middle-row { /*in footer elemrnt*/
display: flex;
flex-flow: column !important;
flex-wrap: wrap;
}
} /*closing tag of @media*/
@media (max-width: 600px) {
main container section.cardSec {
display: flex;
flex-flow: column;
}
main container section card {
margin: auto;
width: 100%;
}
main container section card a {
width: 100%;
}
main container section card img {
border-radius: 5px;
}
span.auth-btn-wrapper {
display: none;
}
msg-container container input{
width: 100%;
}
}
/*
msg-container container{
width: 100%;
padding: 6px;
}
main container section{
flex-flow: column-reverse;
}
loader{
flex-flow: column;
gap: 20px;
}
message-div loader2{
flex-flow: column;
}
} */