-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
52 lines (45 loc) · 853 Bytes
/
style.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
* {
margin: 0px;
padding: 0px;
}
body {
background: linear-gradient(rgba(44, 76, 121, 0.8), rgba(116, 140, 175, 0.5));
background-attachment: fixed;
font-family: sans-serif;
}
h1 {
text-align: center;
margin-top: 4vh;
text-transform: uppercase;
}
form {
width: 60%;
margin: auto;
margin-top: 15px;
}
input,
textarea {
width: 100%;
background: transparent;
outline: none;
border: none;
border-bottom: 2px solid #3B5171;
color: #fff;
font-size: 18px;
margin-bottom: 16px;
}
::placeholder {
color: #fff;
opacity: 1;
}
input[type="submit"] {
background: #3B5171;
font-weight: bold;
letter-spacing: 2px;
font-size: 20px;
height: 50px;
transition: background-color 1s ease-in-out;
}
input[type="submit"]:hover {
background-color: #2A3C56;
}