-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (91 loc) · 1.85 KB
/
style.css
File metadata and controls
113 lines (91 loc) · 1.85 KB
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
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;650;700;800;900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100vw;
min-height: 100vh;
font-family: 'Nunito', Helvetica, sans-serif;
background: #Fff;
}
h1 {
color: rgb(61, 109, 116);
margin: 3rem;
text-align: center
}
.container {
max-width: 60rem;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
margin-top: 40px;
margin-left: auto;
margin-right: auto;
}
section {
width: 100%;
height: 100%;
background-color: #a4e2e9;
padding: 1.5rem;
border: 1px solid transparent;
border-radius: 1rem;
flex-grow: 1;
}
.form {
width: 100%;
height: 100%;
}
.input-control {
min-width: 100%;
}
label {
color: #2a5055;
font-size: .7rem;
font-weight: 600;
}
input {
width: 100%;
padding: .5rem .6rem;
margin: .15rem 0 1rem;
background: #e1fdff;
color: rgb(42, 80, 85);
border: 1px solid transparent;
border-radius: .5rem;
outline: none;
}
.btn-control {
width: 100%;
display: flex;
justify-content: center;
}
button {
font-family: 'Nunito';
font-size: 1.2rem;
margin-top: 1rem;
padding: .5rem .9rem;
background: #498C95;
color: white;
border: 1px solid transparent;
border-radius: 2rem;
outline: none;
cursor: pointer;
}
section.txt-section {
display: flex;
align-items: center;
}
textarea {
resize: none;
height: 100%;
width: 100%;
padding: .6rem;
background: #e1fdff;
color: rgb(42, 80, 85);
border: 1px solid transparent;
border-radius: .5rem;
outline: none;
}