-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
81 lines (69 loc) · 1.41 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
@import url('https://fonts.googleapis.com/css?family=Fredoka+One|Lemon|Dosis|Lobster|Oleo+Script+Swash+Caps:700');
body {
background: #00BA8B;
text-align: center;
}
#form {
position: relative;
top: 50px;
}
form {
border: solid 1px #0E2A36;
padding: 15px 40px;
padding-bottom: 30px;
border-radius: 15px;
background: #0E2A36;
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
input {
background: #37474F !important;
font-family: 'Dosis';
border-color: #37474F !important;
height: 50px !important;
color: #fafafa !important;
padding: 20px 20px;
letter-spacing: 2px;
font-size: 20px !important;
}
button {
margin-top: 10px;
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
background: #00BA8B !important;
height: 50px !important;
border-color: #00BA8B !important;
font-family: 'Dosis';
font-size: 20px !important;
}
button:hover {
opacity: 1;
}
.form-control:focus, button:focus {
border-color: transparent;
box-shadow: none !important;
outline: none !important;
}
h1 {
font-family: 'Lobster',cursive;
font-size: 60px;
margin-bottom: 20px;
color: #ffffff;
}
h3 {
margin-bottom: 25px;
font-family: 'Oleo Script Swash Caps', cursive;
color: #fafafa;
font-size: 30px;
}
#author {
font-size: 15px;
margin-top: 20px;
color: #fafafa;
font-family: 'Lobster', cursive;
}
#author a {
color: #fafafa;
}
#author a:hover {
text-decoration: none;
opacity: 0.8;
}