-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (81 loc) · 1.36 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
* {
margin: 0;
padding: 0;
}
.page {
display: flex;
flex-direction: column;
height: 100vh;
/* Full viewport height */
}
.header {
background-color: #333;
color: #fff;
}
.main-content {
flex: 1;
background: #ddd;
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-thumb {
background: rgb(121, 119, 117);
border-radius: 10px;
}
.ppt-card {
border-radius: 5px;
overflow: hidden;
margin-top: 10px;
color: lightgray;
min-height: 80px;
width: 130px;
height: 73.1px;
background-color: white;
}
.ppt-card-active {
border: 2px solid rgb(182, 72, 42);
}
.scrollbox {
flex-shrink: 0;
width: 150px;
min-width: 150px;
background-color: rgb(231, 231, 230);
overflow: auto;
}
.scrollbox-inner {
padding-left: 5px;
padding-right: 5px;
}
.sidebar {
display: flex;
position: relative;
left: 0;
background-color: rgb(231, 231, 230);
padding-left: 5px;
padding-right: 5px;
flex-shrink: 0;
}
html,
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
overflow: hidden;
height: 100vh;
max-height: 100vh;
}
.no-decoration {
border: none;
outline: none;
background: none;
box-shadow: none;
padding: 0;
margin: 0;
font-family: inherit;
font-size: inherit;
color: inherit;
}
.btn-ppt {
color: rgb(182, 72, 42) !important;
border: 1px solid lightgray !important;
background: #f4f4f4 !important;
}