forked from decoded-cipher/door-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
150 lines (114 loc) · 1.95 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
.apexcharts-tooltip:not(:empty) {
padding: 6px 9px;
}
* {
font-family: 'Poppins', sans-serif;
}
.main-container {
padding: 3rem 4rem 0rem 4rem;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.overview, .details {
height: 175px;
font-size: 14px;
font-weight: 500;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.overview p {
margin: 0;
color: #5a5a5a;
font-size: 15px;
}
.overview span {
color: #90A4AE;
font-size: 11px;
}
.details {
font-weight: 500;
}
.details p {
margin: 0;
color: #5a5a5a;
}
.details span {
margin: 0;
font-size: 11px;
color: #90A4AE;
}
.contributors p {
margin: 0;
}
ol {
margin: 0;
padding: 0;
list-style: none;
}
.activity {
height: 175px;
padding: 0px 10px 4px 0px;
overflow-y: scroll;
}
.activity-item {
border: 1px solid #90A4AE;
border-radius: 0.375rem;
padding: 1rem;
box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}
.activity-item-wrapper {
display: flex;
align-items: center;
color: #90A4AE;
gap: 0.5rem;
}
.icon {
border: 2px solid #90A4AE;
border-radius: 50%;
color: #90A4AE;
padding: 0.5rem;
width: 3rem;
height: 3rem;
}
.statement-group {
margin-left: 0.5rem;
}
.statement {
margin: 0;
font-size: 14px;
font-weight: 500;
}
.statement span {
color: #5a5a5a;
}
.sub-statement {
display: flex;
justify-content: space-between;
}
.sub-statement span {
font-size: 11px;
color: #858585;
font-weight: 500;
}
/* Designing for scroll-bar */
::-webkit-scrollbar {
width: 4px;
height: 4px;
}
/* Track */
::-webkit-scrollbar-track {
background: #c4c4c4;;
border-radius: 5px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #6b6b6b;
border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #3f3f3f;
}