-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyledonor.css
107 lines (99 loc) · 1.79 KB
/
styledonor.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
*
{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body
{
background-color:rgb(235, 214, 197);
padding: 0 10px;
}
.containers
{
border: 2px solid black;
max-width: 500px;
width: 100%;
background-color: white;
margin: 20px auto;
padding: 30px;
box-shadow: 5px 5px 5px rgba(0,0,0,0.125);
}
.containers .title
{
font-size:24px;
font-weight: 700;
margin-bottom: 30px;
color: black;
text-transform: uppercase;
text-align: center;
font-family: century gothic;
}
.containers .form
{
width:100%;
}
.containers .form .input_field
{
margin-bottom: 15px;
display: flex;
align-items: center;
}
.containers .form .input_field label
{
width: 200px;
margin-right: 10px;
font-size: 15px;
font-weight: bold;
font-family:'Times New Roman', Times, serif;
}
.containers .form .input_field .input
{
width: 100%;
outline: none;
border:1px solid black;
font-size: 15px;
padding: 8px 10px ;
border-radius: 3px;
transition: all 0.5s ease;
}
.containers .form .input_field .select
{
position:relative;
width:100%;
height:40px;
border:1px solid black;
-webkit-appearance: none;
appearance: none;
border-radius: 3px;
outline: none;
}
.containers .form .input_field .input:focus
{
border:1.5px solid orange;
}
.containers .form .input_field select:focus
{
border:1.5px solid orange;
}
.containers .form .input_field .btn
{
width:100%;
padding:8px 10px;
font-size: 15px;
border: 0;
background-color: lavender;
color:black;
text-transform: uppercase;
cursor:pointer;
border-radius: 3px;
outline:none;
}
.containers .form .input_field:last-child
{
margin-bottom:0;
}
.containers .form .input_field .btn:hover
{
background-color: green;
}