-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (52 loc) · 1.11 KB
/
style.css
File metadata and controls
59 lines (52 loc) · 1.11 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #0f2027;
background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027);
background: linear-gradient(to right, #2C5364, #203A43, #0F2027);
}
#title {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 50px;
display: flex;
justify-content: center;
padding-top: 20px;
color: aliceblue;
text-shadow: 2px 2px 3px #0F2027;
}
#container {
height: 98vh;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
#container-box {
text-align: center;
display: grid;
grid-template-columns: 1fr 1fr 1fr ;
grid-gap: 12px;
}
.box {
display: inline-block;
text-align: center;
vertical-align: middle;
padding-top: 20%;
padding-bottom: 20%;
border-radius: 10%;
}
#box-1{
background: #488;
color: aliceblue;
}
#box-2{
background: #379;
color: aliceblue;
}
#box-3{
background: #485;
color: aliceblue;
}