-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
73 lines (65 loc) · 1.04 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Poppins;
background-color: #090909;
color: #a09fa4;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
gap: 5rem;
}
.container {
width: 100%;
max-width: 46rem;
background-color: white;
border-radius: 0.5rem;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 1rem;
}
textarea {
resize: none;
width: 100%;
height: 250px;
padding: 1rem;
color: #242e3e;
font: inherit;
font-size: 1rem;
border-radius: inherit;
outline: none;
border: 0;
}
.output-container {
display: flex;
align-items: center;
justify-content: center;
gap: 3.5rem;
padding: 1rem;
border-top: 1px solid gray;
}
.output {
display: flex;
flex-direction: column;
text-align: center;
}
.output p {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 1px;
}
.output span {
font-size: 1.6rem;
font-weight: 700;
color: #242e3e;
}
h1 {
font-size: 2.6rem;
color: white;
text-align: center;
}