File size: 998 Bytes
1e92f2d |
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 |
body {
padding: 20px;
background: #081229;
color: white;
}
select,
input {
display: block;
box-sizing: border-box;
width: 100%;
border-radius: 4px;
border: 1px solid white;
padding: 10px 15px;
margin-bottom: 15px;
font-size: 14px;
max-width: 600px;
}
label {
display: block;
margin-bottom: 8px;
}
button,
input[type='submit'],
.button {
position: relative;
background: #ec5990;
color: white;
text-transform: uppercase;
border: none;
margin-top: 20px;
padding: 20px;
font-size: 16px;
letter-spacing: 10px;
display: block;
appearance: none;
border-radius: 4px;
width: 100%;
font-weight: lighter;
transition: 0.3s all;
max-width: 600px;
}
button[type='button'] {
background: #516391;
color: white;
text-transform: none;
padding: 10px;
letter-spacing: 2px;
}
input[type='submit']:hover,
button[type='button']:hover {
background: #bf1650;
color: white;
}
input[type='submit']:active {
transition: 0.3s all;
top: 2px;
}
|