-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
78 lines (75 loc) · 1.53 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
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap");
/********************
* SETTINGS *
*********************/
html {
box-sizing: border-box;
font-family: "Raleway", sans-serif;
font-size: 14px;
}
*,
*:before,
*:after {
box-sizing: inherit;
padding: 0;
margin: 0;
}
/**********************
* RESPONSIVE *
***********************/
/************************
* DESIGN START *
*************************/
.container {
min-height: 100vh;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #0c122c;
background-image: url("/images/bg-desktop.svg");
background-repeat: no-repeat;
background-position: bottom;
}
.container .box {
position: relative;
height: 100%;
max-width: 850px;
display: flex;
flex-direction: column;
}
.container .box .item {
width: 100%;
padding: 30px;
background-color: #1d2c67;
border-radius: 10px;
margin-bottom: 20px;
}
.container .box .item .logo img {
width: 150px;
height: inherit;
padding-bottom: 30px;
}
.container .box .item .icons {
display: flex;
}
.container .box .item .icons div {
background-color: #0c122c;
border-radius: 10px;
width: 50px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
margin-right: 10px;
}
.container .box .item .icons img {
display: block;
height: auto;
max-width: 100%;
}
.container .box .left {
border-top-right-radius: 80px;
}
/*# sourceMappingURL=style.css.map */