-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
44 lines (39 loc) · 702 Bytes
/
styles.css
File metadata and controls
44 lines (39 loc) · 702 Bytes
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
* {
box-sizing: border-box;
}
body {
display: flex;
flex: 1;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #000;
font-family: 'Roboto', sans-serif;
}
.logo {
height: 150px;
padding: 60px 60px 0px 60px;
}
.caption {
font-size: 14px;
color: #fff;
padding: 20px;
}
.actions {
margin: 20px;
display: flex;
height: 200px;
justify-content: space-between;
align-items: flex-start;
flex: 1;
}
.ui-btn {
margin: 20px;
text-decoration: none;
padding: 15px 20px;
text-align: center;
background-color: #F74543;
color: #fff;
border-radius: 4px;
width: 130px;
}