-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmain.scss
56 lines (51 loc) · 946 Bytes
/
main.scss
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
$bg-primary: linear-gradient(to top left, #28b487, #7dd56f);
* {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
body {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 1rem;
background: $bg-primary;
padding: 0 1.5rem;
font-family: inherit;
overflow-y: hidden;
}
h1 {
font-size: 35px;
width: 100%;
text-align: center;
color: white;
letter-spacing: -1px;
}
textarea {
border: none;
border-radius: 5px;
outline: none;
width: 70%;
height: 190px;
max-width: 600px;
margin: 0 auto;
letter-spacing: -0.5px;
color: #333;
font-size: 1.1rem;
font-weight: 600;
padding: 1.2rem;
}
textarea:focus {
border: 1px solid #777;
}
button {
display: inline-block;
padding: 0.8rem 1.5rem;
background-color: #222;
border: none;
border-radius: 5px;
color: #fff;
font-weight: 700;
font-size: 1em;
cursor: pointer;
}