-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (53 loc) · 1.11 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
/* Importing Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
/* CSS Reset */
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Remove default list styles */
ul, ol {
list-style: none;
}
/* Remove default link styles */
a {
text-decoration: none;
color: inherit;
}
/* Set a base font and line height */
html {
font-size: 100%; /* 16px by default */
line-height: 1.5;
scroll-behavior: smooth;
}
body {
height: 100vh;
font-family: 'Inter', sans-serif;
background: linear-gradient(180deg, #FFF 20%, #FFF3E5 100%);
background-blend-mode: soft-light;
color: #333;
padding: 20px;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
background-size: cover;
}
/* Set a consistent border and outline style */
img, picture {
max-width: 100%;
display: block;
}
input, button, textarea, select {
font: inherit;
border: none;
outline: none;
}
button {
cursor: pointer;
}
table {
border-collapse: collapse;
border-spacing: 0;
}