forked from mdmusaibali/BooksVilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueries.css
122 lines (121 loc) · 1.69 KB
/
queries.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
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
/* MEDIA QUERIES */
@media (max-width: 1280px) {
html {
font-size: 55%;
}
}
@media (max-width: 1024px) {
html {
font-size: 45%;
}
}
@media (max-width: 768px) {
.subject-select {
width: 80%;
}
.box {
width: 80%;
}
.help-form-box {
width: 50%;
}
}
@media (max-width: 614px) {
html {
font-size: 40%;
}
.subject-select {
width: 90%;
}
.box {
width: 85%;
}
.help-form-box {
width: 60%;
}
}
@media (max-width: 614px) {
html {
font-size: 33%;
}
}
@media (max-width: 428px) {
html {
font-size: 35%;
}
.links-box {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
justify-content: center;
align-items: center;
}
li.sem-link {
text-align: center;
}
.quick-scroll {
font-size: 4rem;
}
img.sticky {
width: 7rem;
}
.help-form-box {
width: 70%;
}
.overflow {
width: 80%;
padding: 2rem;
font-size: 3.5rem;
}
.close-icon {
font-size: 4rem;
transform: translate(30%, -30%);
}
.logo {
height: 20rem;
width: 20rem;
border-radius: 100%;
margin-bottom: 6rem;
}
.box {
grid-template-columns: 1fr;
gap: 8rem;
}
.book-img {
width: 80%;
margin-bottom: 3rem;
}
.subject-select {
padding: 2rem 2rem;
}
.semester {
font-size: 5rem;
}
.book-name {
font-size: 4rem;
}
li {
font-size: 2.5rem;
}
li:hover:after {
transform: scaleX(0.5);
}
.btn,
.btnView {
font-size: 3rem;
}
.book-info {
gap: 4rem;
margin-bottom: 6rem;
}
}
@media (max-width: 375px) {
html {
font-size: 26%;
}
.logo {
height: 20rem;
width: 20rem;
border-radius: 100%;
margin-bottom: 6rem;
}
}