-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (78 loc) · 1.24 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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body {
font-family: sans-serif;
background-color: #233142;
}
.container {
width: 100%;
height: 100%;
}
.signup {
width: 40%;
display: block;
margin: 50px auto;
padding: 50px 35px;
background-color: #fff;
}
h1 {
text-align: center;
text-transform: uppercase;
color: #ff6f3c;
margin-bottom: 10px;
}
h3 {
text-align: center;
padding-bottom: 30px;
font-weight: 500;
}
a {
text-decoration: none;
color: #ff6f3c;
padding-bottom: 30px;
}
p {
text-align: center;
color: #fff;
}
form {
display: grid;
}
label {
color: #000;
font-size: 18px;
font-weight: 500;
}
input {
padding: 10px;
border-radius: 8px;
margin-top: 2px;
margin-bottom: 12px;
font-size: 16px;
border: solid 1px rgb(245, 245, 245);
}
.button {
background-color: #ff6f3c;
width: 30%;
margin: auto;
border: none;
color: #fff;
text-transform: uppercase;
font-weight: 600;
padding: 15px 15px;
margin-top: 30px;
cursor: pointer;
}
@media (max-width: 768px){
.signup{
width: 90%;
}
}
@media (max-width: 300px) {
input {
width: 90%;
}
}