-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
57 lines (46 loc) · 821 Bytes
/
styles.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
body {
background: #ED1848;
color: white;
}
.row {
padding: 25px 0;
}
.header {
text-align: center;
}
.header i {
font-size: 0.7em;
}
.header a {
text-decoration: none;
color: white;
}
.header a:hover {
text-shadow: rgba(0, 0, 0, 0.2) 0px 3px;
}
input {
background: rgba(0, 0, 0, 0.1);
border-radius: 3px;
box-shadow: none;
color: white;
border: 0;
padding: 5px;
}
.btn-machi {
color: white;
font-weight: bold;
background-image: linear-gradient(to bottom, #EA0536, #911832);
}
.btn-machi:hover {
color: white;
box-shadow: rgba(255, 255, 255, 0.0980392) 0px 1px 0px 0px inset;
background-image: linear-gradient(to bottom, red, #911832);
}
.btn-machi:focus, .btn-machi:active {
color: white;
background: #EA0536;
}
.footer {
text-align: right;
margin-top: 60px;
}