-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
163 lines (144 loc) · 3.05 KB
/
Copy pathresponsive.css
File metadata and controls
163 lines (144 loc) · 3.05 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
@media (max-width: 768px) {
html, body {
overflow-x: hidden;
width: 100%;
}
body {
zoom: 0.7 !important;
}
.scaled-wrapper {
min-height: 100vh;
overflow: auto;
position: relative;
}
.content-wrapper {
transform: scale(0.7);
transform-origin: top center;
max-width: 100%;
}
.top-bar {
padding: 10px;
}
.top-bar h4 {
font-size: 12px;
}
.logo {
font-size: 22px;
margin-bottom: 20px;
}
/*-- หมายเหตุ: ส่วนนี้คือ Menu --*/
nav ul.menu {
flex-wrap: wrap;
flex-direction: row;
justify-content: center;
gap: 6px 16px;
padding: 10px;
}
nav ul.menu li a {
font-size: 12px;
box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
/*-----------------------------*/
.zoom-controls {
display: none;
top: 80px;
right: 10px;
flex-direction: row;
gap: 6px;
transform: scale(0.9);
}
.zoom-controls button {
width: 32px;
height: 32px;
font-size: 18px;
}
#toggle-theme {
top: 20px;
right: 10px;
transform: scale(0.9);
}
/*-- หมายเหตุ: ส่วนนี้คือ Make by --*/
#make\ by .author-container {
flex-direction: row;
align-items: center;
justify-content: center;
flex-wrap: nowrap;
gap: 20px;
padding: 10px;
}
#make\ by .author-image img {
max-width: 200px;
width: 47vw;
border-radius: 16px !important;
object-fit: cover;
overflow: hidden;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
#make\ by .author-text {
max-width: 60vw;
min-width: 180px;
font-size: 14px;
line-height: 1.5;
text-align: left;
word-wrap: break-word;
overflow-wrap: break-word;
}
/*-----------------------------*/
.author-container2,
.author-container3,
.author-container4 {
flex-direction: column;
align-items: center;
}
.author-image2 img,
.author-image3 img,
.author-image4 img {
width: 90%;
max-width: 400px;
}
table {
font-size: 12px;
min-width: unset;
width: 100%;
}
.tab-btn,
.tab-btn-myalgo,
.tab-btn-applied {
width: 100%;
margin-top: 35px;
}
.left, .center {
padding: 10px;
width: 95%;
}
.top-banner img {
height: 160px;
}
.subheading {
margin-top: 30px;
}
/*-- หมายเหตุ: ส่วนนี้คือ ป๊อปอัพดาวโหลด --*/
.modal {
position: fixed;
top: 0;
left: 0;
width: 115vw;
height: 100vh;
display: none;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0);
z-index: 10000;
}
.modal-content {
max-width: 220px;
padding: 12px 5px;
font-size: 10px;
text-align: center;
}
.modal-content button {
font-size: 10px;
padding: 6px 12px;
}
/*-----------------------------------*/
}