-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset.css
More file actions
55 lines (44 loc) · 1.08 KB
/
Copy pathreset.css
File metadata and controls
55 lines (44 loc) · 1.08 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
@import url('https://fonts.googleapis.com/css?family=Inter');
/* default css reset */
* {
margin: 0;
font-family: 'Inter';
}
*,
*::before,
*::after {
box-sizing: border-box;
}
/* Prevent font size inflation */
html {
-moz-text-size-adjust: none;
-webkit-text-size-adjust: none;
text-size-adjust: none;
scroll-behavior: smooth;
/* hides scrollbar for the entire page, excluding the right content div */
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* set code body defaults */
body {
min-height: 100vh;
line-height: 1.5;
background-color: #FBFAF2;
}
/* makes images easier to work with */
img,
picture {
max-width: 100%;
display: block;
}
/* the two following hides the scroll bar for the right content */
.right-content{
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.right-content::-webkit-scrollbar{
display:none; /* Hide scrollbar for Chrome, Safari and Opera */
}
/* --------dafault css reset ends here -------- */
@media (max-width:768px){
}