-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDcss.css
More file actions
124 lines (107 loc) · 2.05 KB
/
Copy pathDcss.css
File metadata and controls
124 lines (107 loc) · 2.05 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
114
115
116
117
118
119
120
121
122
123
124
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
.wrapper {
width: 600px;
padding: 25px;
margin: 25px auto 0;
box-shadow: 0px 0px 0px 2px;
}
.wrapper h2 {
font-size: 30px;
padding: 10px;
text-align: center;
border: 2px dotted rgb(41, 58, 52);
color: rgb(6, 172, 116);
}
h4 {
padding: bottom 5px;
color: rgb(6, 172, 116);
}
.input-group {
width: 100%;
position: relative;
display: flex;
margin-bottom: 10px;
flex-direction: row;
padding: 5px 0px;
}
.input-box {
width: 100%;
margin-right: 12px;
position: relative;
}
.input-box:last-child {
margin-right: 0px;
}
.name {
padding: 20px 10px 20px 40px;
width: 100%;
border: 1px solid;
letter-spacing: 1px;
transition: 0.2s;
border-radius: 7px;
color: rgb(41, 58, 52);
}
.name:focus,
.DOB:focus {
-webkit-box-shadow: 0 0 8px 4px rgb(6, 172, 116);
-moz-box-shadow: 0 0 8px 4px rgb(6, 172, 116);
box-shadow: 0 0 8px 4px rgb(6, 172, 116);
border: 2px solid olivedrab;
background-color: rgb(6, 172, 116);
transition: 0.5s;
color: aliceblue;
}
.DOB {
width: 30%;
padding: 10px;
text-align: center;
}
.radio {
display: none;
}
.input-box label {
width: 50%;
padding: 10px;
display: inline-block;
float: left;
text-align: center;
border: 2px solid;
border-radius: 5px;
}
.radio:checked+label {
background-color: rgb(6, 172, 116);
transition: 0.4s;
color: aliceblue;
}
.input-box select {
display: inline-block;
width: 50%;
padding: 10px;
float: left;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
.input-box select:focus {
background-color: rgb(6, 172, 116);
color: aliceblue;
}
button {
width: 560px;
background: transparent;
background: rgb(6, 172, 116);
color: aliceblue;
padding: 10px;
border-radius: 4px;
transition: all 0.4s ease;
}
button:hover {
cursor: pointer;
background-color: olivedrab;
}