-
Notifications
You must be signed in to change notification settings - Fork 0
/
formSubmission.css
114 lines (102 loc) · 2.17 KB
/
formSubmission.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
body {
background-color: #247BA0;
font-family: 'Ubuntu', sans-serif;
}
.main {
background-color: #FFFFFF;
width: 400px;
height: 650px;
margin: 7em auto;
border-radius: 1.5em;
box-shadow: 0px 11px 35px 2px rgba(0, 0, 0, 0.14);
}
.sign {
padding-top: 40px;
color: #247BA0;
font-family: 'Ubuntu', sans-serif;
font-weight: bold;
font-size: 23px;
}
.un {
width: 76%;
color: rgb(38, 50, 56);
font-weight: 700;
font-size: 14px;
letter-spacing: 1px;
background: rgba(136, 126, 126, 0.04);
padding: 10px 20px;
border: none;
border-radius: 20px;
outline: none;
box-sizing: border-box;
border: 2px solid rgba(0, 0, 0, 0.02);
margin-bottom: 50px;
margin-left: 46px;
text-align: center;
margin-bottom: 27px;
font-family: 'Ubuntu', sans-serif;
}
form.form1 {
padding-top: 40px;
}
.un:focus, .pass:focus {
border: 2px solid rgba(0, 0, 0, 0.18) !important;
}
.button {
cursor: pointer;
border-radius: 5em;
color: #fff;
background: linear-gradient(to right, #13293D, #247BA0);
border: 0;
width: 150px;
padding-left: 40px;
padding-right: 40px;
padding-bottom: 10px;
padding-top: 10px;
margin-bottom: 8px;
font-family: 'Ubuntu', sans-serif;
margin-left: 32%;
font-size: 13px;
text-align: center;
box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.04);
}
input[type=checkbox] + label {
color: #cccccc;
}
input[type=checkbox]:checked + label {
color: #1B98E0;
}
.checkboxStuff {
margin-left: 25%;
font-family: 'Ubuntu', sans-serif;
}
.amountStuff {
color: #1B98E0;
margin-bottom: 10px;
margin-left: 25%;
font-family: 'Ubuntu', sans-serif;
font-size: 18px;
}
.numberBox {
width: 25%;
color: #1B98E0;
background: rgba(136, 126, 126, 0.04);
padding: 10px 20px;
border: none;
border-radius: 20px;
outline: none;
box-sizing: border-box;
margin-bottom: 10px;
margin-left: 15%;
font-family: 'Ubuntu', sans-serif;
font-size: 13px;
text-align: center;
}
#maskQuantity {
margin-bottom: 45px;
}
@media (max-width: 600px) {
.main {
border-radius: 0px;
}
}