-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
93 lines (79 loc) · 1.46 KB
/
styles.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
@import url("./glitter.css");
/* reset CSS */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
font-family: "Poppins", sans-serif;
transition: all 0.1s ease-in;
/* font-size: 62.5%; */
}
body {
color: black;
background-color: var(--secondary-color-dark);
}
/* ---Landing page--- */
.container {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
padding: 5rem 0;
min-height: 90vh;
}
.intro {
border-top: 0.1rem solid var(--primary-color-dark);
background-color: var(--primary-color);
}
.intro-text {
color: var(--text-color);
width: 30rem;
display: flex;
flex-direction: column;
justify-content: space-evenly;
margin-bottom: 5rem;
}
.illustration {
width: 40rem;
padding: 0 2rem;
}
.intro-btns {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.install-text {
width: 30rem;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
.carbon-wrapper {
width: 30rem;
overflow-x: scroll;
}
/* ---spacing--- */
:root {
--paddingV: 2rem;
--paddingH: 4vw;
}
.padding-default {
padding: var(--paddingV) var(--paddingH);
}
*::-webkit-scrollbar {
width: 0.2rem;
}
*::-webkit-scrollbar-track {
background: rgba(155, 155, 155, 0.7);
}
*::-webkit-scrollbar-thumb {
background-color: var(--primary-color);
border-radius: 1.25rem;
border: transparent;
}
@media screen and (max-width: 768px) {
* {
font-size: 70%;
}
}