-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
67 lines (50 loc) · 929 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
58
59
60
61
62
63
64
65
66
67
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
}
body {
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
/*color: #eee;
background: #64dd17;*/
font-family: 'Roboto', 'Arial', sans-serif;
}
#content {
width: 500px;
/*height: 350px;*/
text-align: center;
}
#logo-container {
margin-bottom: 40px;
}
#logo {
max-width: 325px;
width: 85%;
}
.btn {
width: 150px;
height: 40px;
border: none;
outline: none;
/*background-color: white;*/
background-color: #64dd17;
border-radius: 5px;
/*box-shadow: #666 0 2px 3px;*/
/*color: #64dd17;*/
color: white;
font-family: 'Lato', 'Arial', sans-serif;
font-size: 20px;
margin: 10px 15px 25px;
}
.btn:hover {
cursor: pointer;
background-color: #67e318;
}
.fa {
font-size: 22px;
margin-right: 5px;
}