-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
221 lines (192 loc) · 3.81 KB
/
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
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
:root {
--secondary-col: #E8EDEF;
--tert-col: linear-gradient(to right, #ffb347 0%, #ffcc33 51%, #ffb347 100%);
}
html {
scroll-behavior: smooth;
border-top: none !important;
}
li {
list-style: none;
}
br {
display: none;
}
/* Container */
.container-small, .container-large {
max-width: 100%;
}
/* Navbar */
#bt {
color: #9A9DA0;
border-top: 3px solid #ffbb33;
}
#bt:hover {
color: #fff;
transform: scale(1.02);
transition: 1s all ease;
}
.bt-1:hover {
color: #fff !important;
transform: rotate(360deg) scale(1.25);
transition: 0.5s all;
}
.bt-1:not(:hover) {
color: #9A9DA0 !important;
transform: rotate(0deg);
transition: 0.75s all;
}
#btt {
background-image: var(--tert-col);
transition: 0.5s;
background-size: 200% auto;
color: white;
display: block;
}
#btt:focus {
outline: none;
box-shadow: none;
}
#btt:hover {
transform: translateY(5px);
background-position: right center; /* change the direction of the change here */
}
/* Chat Snap */
.p-d {
background: #000000;
background: -webkit-linear-gradient(to right, #434343, #000000);
background: linear-gradient(to right, #434343, #000000);
border-left: 6px solid #ffbb33;
box-shadow: 0 5px 8px 0 #888888;
border-radius: 7px;
transform: scale(1);
transition: 0.6s all;
}
.p-d:hover {
transform: scale(1.08);
}
/* Header */
#didi {
background: #ECE9E6;
background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6);
background: linear-gradient(to right, #FFFFFF, #ECE9E6);
}
/* Header - Chat Snap */
#p-c {
background: #83a4d4;
background: -webkit-linear-gradient(to right, #b6fbff, #83a4d4);
background: linear-gradient(to right, #b6fbff, #83a4d4);
border-left: 6px solid #ffbb33;
box-shadow: 0 5px 10px 0 #555;
border-radius: 7px;
transform: scale(1);
transition: 0.6s all;
}
#p-c:hover {
transform: scale(1.08);
}
/* Don't Do This */
#bb {
font-size: 1.1rem;
font-weight: 400;
}
.same {
background-color: var(--secondary-col) !important;
}
#do-this li {
list-style: circle;
}
/* Do This Instead */
.te {
margin: 3%;
}
.te h5 {
margin-top: -10px;
}
/* Footer */
footer i {
padding-top: 5px;
color: #9A9DA0;
}
footer i:hover {
color: #fff;
transform: translateY(-7.5px);
transition: 1s all ease;
}
/* New Container */
@media (min-width: 400px) {
.container-small {
width: 350px;
}
.container-large {
width: 550px;
}
}
@media (min-width: 768px) {
.container-small {
width: 500px;
}
.container-large {
width: 970px;
}
}
@media (min-width: 992px) {
.container-small {
width: 800px;
}
.container-large {
width: 1170px;
}
}
@media (min-width: 1200px) {
.container-small {
width: 1200px;
}
.container-large {
width: 1600px;
}
}
/* Media Queries */
@media (max-width: 768px) {
#dis {
font-size: 4rem;
}
#ra {
font-size: 1.3rem;
}
#re {
font-size: 1.2rem;
}
}
@media (max-width: 575px) {
#col {
display: grid;
justify-content: end;
}
#col li {
flex-direction: row;
margin: 0 10px;
}
#didi {
width: 300px !important;
}
}
@media (max-width: 400px) {
#dis {
font-size: 2.3rem;
}
#didi {
width: 215px !important;
}
#p-c, .p-d {
font-size: 0.9rem;
}
br {
display: block;
}
}
@media (max-width: 280px) {
#did {
display: none;
}
}