-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (86 loc) · 1.98 KB
/
style.css
File metadata and controls
99 lines (86 loc) · 1.98 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
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
width: 100%;
}
main {
height: 100%;
width: 100%;
display: grid;
gap: 10px;
padding: 5px;
margin: 5px;
grid-template-columns:500px 500px 450px;
grid-template-rows: 230px 150px 150px 450px;
grid-template-areas: "Insight Connect Colors"
"Sign Hive Message"
"Sign Hive Country"
"Graph Event Event";
}
#insight{
grid-area: Insight;
background-color: bisque;
background-image: url(./assets/insight.PNG);
background-size: contain;
border-radius: 5px;
}
#connect {
grid-area: Connect;
background-color: green;
background-image: url(./assets/connect.PNG);
background-size: contain;
border-radius: 5px;
}
#colors {
grid-area: Colors;
background-color: violet;
background-image: url(./assets/colors.PNG);
background-size: cover;
border-radius: 5px;
}
#signed {
grid-area: Sign;
background-color: lightseagreen;
background-image: url(./assets/sign.PNG);
background-size: cover;
border-radius: 5px;
}
#hives {
grid-area: Hive;
background-color: lightcoral;
background-image: url(./assets/hive.PNG);
background-size: contain;
border-radius: 5px;
}
#message {
grid-area: Message;
background-color: lightsalmon;
background-image: url(./assets/message.PNG);
background-size: cover;
border-radius: 5px;
}
#country {
grid-area: Country;
background-color: lightgreen;
background-image: url(./assets/country.PNG);
background-size: cover;
border-radius: 5px;
}
#graph {
grid-area: Graph;
background-color: lightgoldenrodyellow;
background-image: url(./assets/graph.PNG);
background-size: cover;
border-radius: 5px;
}
#event {
grid-area: Event;
background-color: rgb(144, 144, 4);
background-image: url(./assets/event.PNG);
background-size: cover;
border-radius: 5px;
}