-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (74 loc) · 1.21 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
@import url('https://fonts.googleapis.com/css?family=Nunito:400,700&display=swap');
* {
margin: 0;
padding: 0;
}
body {
height: 100vh;
padding: 20px;
background: #fdfdfd;
font-family: 'Nunito', sans-serif;
font-size: 1rem;
margin: 0;
padding: 0;
}
main {
height: 95%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 10px;
}
img {
height: 20vh;
padding: 10px;
}
h3 {
color: #009846;
}
#phone,
.btn {
padding-top: 6px;
padding-bottom: 6px;
border: 1px solid #ccc;
border-radius: 4px;
}
.btn {
color: #ffffff;
background-color: #009846;
border-color: #009846;
font-size: 14px;
outline: none;
cursor: pointer;
padding-left: 12px;
padding-right: 12px;
}
.btn:focus,
.btn:hover {
background-color: #007b3a;
border-color: #007b3a;
}
.btn:active {
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.alert {
padding: 15px;
margin-top: 10px;
border: 1px solid transparent;
border-radius: 4px;
}
.alert-error {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.footer {
text-align: center;
font-size: small;
position: absolute;
left: 0;
right: 0;
bottom: 0;
}