-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (89 loc) · 1.54 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: #eee;
}
.app-container {
display: flex;
height: 100vh;
}
.shared-features-in-both-sides {
height: 100%;
padding: 30px 20px;
}
.left-side {
width: 25%;
background-color: white;
margin-right: 5%;
}
.right-side {
width: 70%;
}
.right-side .top-part {
height: 90%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.right-side .button-part {
height: 10%
}
.dashboard-slot {
width: 400px;
height: 300px;
margin: 20px 10px;
resize: both;
overflow: auto;
position: relative;
}
.widget {
width: 100%;
height: 200px;
position: relative;
}
#countries-chart {
height: 100%;
width: 100%;
}
.dashed-border {
border: 2px dashed #aaa;
border-radius: 10px;
}
.shadow-box {
box-shadow: 5px 5px 10px lightblue, -5px -5px 10px lightblue;
}
.blue-icon-container::after {
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f055";
font-size: 40px;
color: gray;
left: 50%;
top: 50%;
position: absolute;
transform: translate(-50%, -50%);
}
.button-container {
width: 80%;
margin: auto;
}
.button-shared {
background-color: #0069D9;
cursor: pointer;
color: white;
padding: 10px 15px;
border: 0;
border-radius: 5px;
}
.save-button {
float: right;
}
.details-button {
float: left;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
}