-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (83 loc) · 1.24 KB
/
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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #1b1c1e;
text-align: center;
}
h1 {
font-family: 'Playfair Display',
serif;
font-size: 59px;
color: white;
font-weight: 600;
padding-bottom: 20px;
}
p {
color: #d2d2d2;
}
p,
input,
textarea,
label {
font-family: 'Poppins',
sans-serif;
}
.container {
max-width: 1320px;
margin: 0 auto;
padding: 5%;
}
form {
max-width: 500px;
margin: 0 auto;
text-align: left;
padding: 20px 0;
}
input,
textarea,
label {
display: block;
margin: 0 auto;
width: 100%;
color: #828282;
}
input,
textarea {
background-color: transparent;
border: 0;
border-bottom: 2px solid #828282;
}
input[type=submit] {
background-color: #545557;
padding: 15px 0;
color: white;
font-size: 18px;
border-bottom: none;
margin-top: 30px;
cursor: pointer;
transition: all .3s ease;
}
input[type=submit]:hover {
background: #FFF;
color: #1b1c1e;
}
input,
textarea {
color: white;
font-size: 18px;
padding: 10px;
}
input:focus,
textarea:focus {
outline: 1px solid #828282;
}
a {
color: #828282;
font-style: italic;
}
a:hover {
color: #fff;
}