-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
54 lines (49 loc) · 1.05 KB
/
styles.scss
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
//https://github.com/wizelineacademy/github-actions-tutorial
@import url("https://fonts.googleapis.com/css2?family=Sen&display=swap");
body {
font-family: "Sen", monospace;
color: white;
background-image: linear-gradient(
134.6deg,
rgba(201, 37, 107, 1) 15.4%,
rgba(116, 16, 124, 1) 74.7%
);
height: 100vh;
width: 100vw;
margin: 0;
padding: 0;
}
#appInterface {
height: 100%;
width: 100%;
margin: 0px;
display: grid;
height: 100vh;
grid-template-rows: 1fr 3fr 1fr;
grid-template-areas:
". title ."
"map map map"
"infoDiv infoDiv infoDiv";
align-items: center;
#chartDiv {
grid-area: map;
width: 100%;
height: 100%;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
#title {
grid-area: title;
text-align: center;
}
#infoDiv {
grid-area: infoDiv;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
align-items: center;
justify-items: center;
div {
text-align: center;
}
}
}
/*# sourceMappingURL=styles.css.map */