-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (106 loc) · 2.06 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
/* Import the Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
/* CSS Reset */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: rgb(175, 241, 195);
}
::selection {
color: #fff;
background: green;
}
.wrapper {
width: 370px;
background: #fff;
padding: 25px 30px;
border-radius: 7px;
box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.05);
}
.wrapper header {
text-align: center;
font-size: 28px;
font-weight: 500;
color: green;
}
.wrapper form {
margin: 35px 0 20px;
}
form .row {
display: flex;
flex-direction: column;
margin-bottom: 20px;
}
form .row label {
font-size: 18px;
margin-bottom: 5px;
}
form :where(textarea, select, button) {
outline: none;
width: 100%;
height: 100%;
border: none;
border-radius: 5px;
}
form .row textarea {
resize: none;
height: 110px;
border: 1px solid rgb(22, 110, 38);
font-size: 15px;
padding: 8px 10px;
}
form .row textarea::-webkit-scrollbar {
width: 0px;
}
form .row .outer {
height: 47px;
display: flex;
padding: 0 10px;
border-radius: 5px;
align-items: center;
border: 1px solid rgb(22, 110, 38);
}
form .row select {
font-size: 14px;
background: none;
}
form .row select::-webkit-scrollbar {
width: 8px;
}
form .row select::-webkit-scrollbar-track {
background: #fff;
}
form .row select::-webkit-scrollbar-thumb {
background: #888;
border-radius: 8px;
border-right: 2px solid #ffffff;
}
form button {
font-size: 17px;
border: none;
outline: none;
width: 100%;
height: 52px;
margin-top: 10px;
background: green;
font-size: 17px;
color: #fff;
cursor: pointer;
}
form button:hover {
background: rgb(3, 165, 3);
}
@media (max-width:400px) {
.wrapper {
max-width: 345px;
width: 100%;
}
}