-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
152 lines (113 loc) · 2.2 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
/* configura a paleta de cores da aplicação */
:root {
--orange: #ff7b31;
--white: #ffffff;
--black: #09090a;
--gray: #303037;
}
/* define propriedades básicas para os valores padrões */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}
/* estilização padrão */
body {
display: flex;
flex-direction: column;
align-items: center;
gap: 35px;
height: 100vh;
width: 100vw;
padding: 80px 95px;
background-color: var(--black);
overflow-x: hidden;
}
#welcome-message {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
gap: 15px;
color: var(--white);
text-align: center;
}
#welcome-message h1::after {
/* content: "Comece a criar novos hábitos agora mesmo :D"; */
}
#welcome-message p {
opacity: 0.7;
font-family: "Inter";
font-weight: 400;
font-size: 18px;
}
@media (max-width: 700px) {
body {
padding: 40px;
}
#welcome-message h1::after {
/* content: "Crie novos hábitos :D"; */
font-size: 25px;
}
#welcome-message p {
font-size: 16px;
}
}
::-webkit-scrollbar {
width: 14px;
}
::-webkit-scrollbar-thumb {
height: 40px;
width: 15px;
border: 4px solid rgba(0, 0, 0, 0);
background-clip: padding-box;
border-radius: 9999px;
background-color: var(--orange);
}
button {
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border: none;
outline: none;
}
input {
appearance: none;
outline: none;
border: none;
}
.material-symbols-outlined {
font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
.submit-button {
height: 45px;
gap: 10px;
font-size: 16px;
font-weight: 700;
border-radius: 30px;
background-color: var(--orange);
transition: all 100ms ease-in;
}
.submit-button:hover {
opacity: 0.7;
}
.cancel-button {
height: 45px;
gap: 10px;
padding: 0px 40px;
font-size: 16px;
font-weight: 700;
border-radius: 30px;
color: var(--orange);
border: 2px solid var(--orange);
background-color: transparent;
transition: all 100ms ease-in;
}
.cancel-button:hover {
opacity: 0.7;
}