-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathframe.scss
More file actions
75 lines (64 loc) · 1.41 KB
/
Copy pathframe.scss
File metadata and controls
75 lines (64 loc) · 1.41 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
.page-wrapper {
background-color: black;
height: 100vh;
display: flex;
padding: 20px 0 0 20px;
.display-wrapper {
display: grid;
grid-template-columns: [col1-start] minmax(175px, 20%) [col2-start] auto [col3-start] auto ;
grid-template-rows: [row1-start] 20px [row2-start] auto [row3-start] auto [row4-start] auto [row4-end] ;
background-color: black;
height: 100%;
width: 100%;
}
}
.top-container {
grid-column: col1-start / span 3;
grid-row: row1-start;
background-color: var(--lcars-gold);
border-radius: 20px 0 0 0;
}
.left-container {
grid-column: col1-start ;
grid-row: row2-start / row2-end;
background-color: black;
border-radius: 0 0 0 20px;
}
.center-panel {
grid-column: col2-start / span 2;
grid-row: row2-start / span 4;
background-color: black;
z-index: 0;
padding: 40px;
max-width: 100%;
overflow: hidden;
}
.user {
grid-column: col3-start / span 1;
grid-row: row2-start;
z-index: 2;
display: flex;
width: 100%;
justify-content: flex-end;
padding: 5px 0 5px;
.k-chip-content {
color: black;
}
.k-icon {
padding-left: 5px;
}
}
.corner-background {
width: 50px;
height: 40px;
background: var(--lcars-gold);
grid-column: col2-start;
grid-row: row2-start / span 4;
z-index: 1;
.corner {
width: 50px;
height: 40px;
background: #000;
border-radius: 40px 0 0 0;
}
}