forked from Bhavneet1492/ED-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
customer.css
86 lines (86 loc) · 1.53 KB
/
customer.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
*{
padding: 0;
margin: 0;
}
body{
background-color:#12f8ad;
}
.container{
background-color: rgb(24, 24, 24);
padding-top: 100px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding-left: 20px;
padding-right: 20px;
margin-bottom: 100px;
width:800px;
color: rgb(191, 238, 182);
}
.container input{
width: 600px;
height: 50px;
font-size: 22px;
}
.container label{
font-size: 30px;
}
.container button{
font-size: 28px;
color: white;
height: 70px;
border-radius: 12px;
background-color: #12f8ad;
}
.container select{
font-size: 28px;
color: white;
height: 70px;
border-radius: 12px;
background-color: #12f8ad;
width: 600px;
}
.out{
padding-top: 100px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.center-form{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 15px;
}
label{
font-size: 22px;
font-weight: 800;
}
form input{
background-color: black;
border: none;
text-align: center;
border-top: 0;
padding: 7px;
margin-top: 12px;
font-size: 16px;
}
form select{
text-align: center;
border: 3px solid black;
border-radius: 10%;
width: 200px;
padding: 7px;
margin-top: 12px;
font-size: 19px;
}
button{
font-size: 20px;
border: 5px solid black;
width: 200px;
background-color: white;
height: 45px ;
}