-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
112 lines (94 loc) · 1.58 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
Bright orange: #D9761C
Dark cyan: #006A87
Very dark cyan: #003F4F
Transparent white: rgba(255, 255, 255, 0.75)
Very light gray: #F2F2F2
font-family: "Lexend Deca", sans-serif;
font-family: "Big Shoulders Display", sans-serif;
*/
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html,
body {
height: 100%;
}
body {
background-color: #f2f2f2;
display: flex;
justify-content: center;
align-items: center;
}
main {
display: flex;
max-width: 100%;
max-height: 100%;
justify-content: center;
align-content: center;
}
.box-container {
display: flex;
border-radius: 10px;
max-width: 800px;
max-height: 400px;
overflow: hidden;
}
img {
height: 30px;
width: 50px;
}
.box1 {
background-color: #d9761c;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
padding: 0 30px 0 30px;
}
.box2 {
background-color: #006a87;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
padding: 0 30px 0 30px;
}
.box3 {
background-color: #003f4f;
min-height: 400px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
padding: 0 30px 0 30px;
}
.box1 > button {
color: #d9761c;
}
.box2 > button {
color: #006a87;
}
.box3 > button {
color: #003f4f;
}
button {
width: 120px;
height: 40px;
border-radius: 30px;
border: none;
margin-top: 30px;
}
.box-container h1 {
font-family: "Big Shoulders Display", sans-serif;
}
p,
h1 {
color: rgba(255, 255, 255, 0.75);
}
p,
button {
font-family: "Lexend Deca", sans-serif;
font-size: 14px;
}