-
Notifications
You must be signed in to change notification settings - Fork 0
/
authmain copy.css
49 lines (44 loc) · 988 Bytes
/
authmain copy.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
.application-form {
border: 1px solid black;
box-sizing: border-box;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
margin: 15px auto;
padding: 15px;
width: 600px;
}
form { max-width:420px; margin:50px auto; }
.applyInput {
font-family: Helvetica, Arial, sans-serif;
font-weight:500;
font-size: 15px;
border-radius: 5px;
line-height: 15px;
border:2px solid #CC6666;
transition: all 0.3s;
padding: 13px;
margin-bottom: 15px;
width:100%;
box-sizing: border-box;
outline:0;
}
.applyInput:focus { border:px solid #CC4949; }
textarea {
height: 150px;
line-height: 150%;
resize:vertical;
}
[type="submit"] {
font-family: 'Montserrat', Arial, Helvetica, sans-serif;
width: 100%;
background:#CC6666;
border-radius:5px;
border:0;
cursor:pointer;
color:white;
font-size:20px;
padding-top:10px;
padding-bottom:10px;
transition: all 0.3s;
font-weight:700;
}
[type="submit"]:hover { background:#CC4949; }