-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
161 lines (138 loc) · 2.79 KB
/
style.css
File metadata and controls
161 lines (138 loc) · 2.79 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
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
151
152
153
154
155
156
157
158
159
160
161
:root {
--primary-color: #3367D6;
--primary-color-light: #ABC6FF;
}
body {
height: 600px;
max-height: 600px;
width: 600px;
min-width: 600px;
font-family: 'Open Sans', sans-serif;
margin: 0;
position: relative;
background-color: #F5F5F5;
border: none;
padding: 0;
}
.title-container {
padding: 12px 16px;
box-shadow: 4px 0px 8px #00000040;
position: fixed;
width: 100%;
z-index: 1000;
background-color: #3367D6;
background: transparent linear-gradient(246deg, #3367D6 0%, #5883DE 100%) 0% 0% no-repeat padding-box;
top: 0px;
box-sizing: border-box;
display: flex;
flex-direction: column;
align-items: center;
font-family: 'Open Sans', sans-serif;
}
.title-img {
margin-bottom: 12px;
}
.text-input-container {
position: relative;
width: 100%;
}
.text-input-img {
position: absolute;
left: 4px;
top: 4px;
bottom: 4px;
}
.text-input {
outline: none;
height: 32px;
border-radius: 4px;
background-color: #F5F5F5;
border: none;
padding-left: 32px;
width: 100%;
box-sizing: border-box;
box-shadow: 2px 2px 8px #33333333;
}
.text-input:hover {
transition: all 0.15s;
box-shadow: 2px 2px 16px #3333334d;
z-index: 1000;
}
.text-input:active {
background-color: #F5F5F5;
}
.pages-list {
padding: 85px 12px 24px 12px;
}
body::-webkit-scrollbar {
width: 0px;
background-color: transparent;
}
body::-webkit-scrollbar-thumb {
border-radius: 15px;
width: 5px;
background-color: #999999;
}
.pages-list > li {
background-color: #FFFFFF;
display: flex;
align-items: center;
padding: 0px 8px;
cursor: pointer;
border-radius: 4px;
margin-bottom: 6px;
box-shadow: 0px 2px 3px #00000014;
}
.pages-list > li:hover, .pages-list > li.select {
/* background-color: #F5F5F5; */
transition: all 0.15s;
transform: scale(1.005);
box-shadow: 2px 2px 16px #3333334d;
}
.pages-list > li:active {
background-color: #EEE;
}
.pages-list > li h3, .pages-list > li h4{
color: #333333;
margin: 0px;
}
.pages-list > li h3{
letter-spacing: 0.04em;
text-overflow: ellipsis;
overflow: hidden;
}
.pages-list > li h4{
color: #33333399;
text-overflow: ellipsis;
overflow: hidden;
margin-top: 2px;
}
.pages-list > li div {
width: 100%;
padding: 8px 8px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.pages-list > li .img {
background-color: #F5F5F5;
width: 36px;
height: 36px;
margin-right: 12px;
border-radius: 4px;
box-sizing: border-box;
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
background-size: 20px 20px;
}
.shortcut-text {
position: fixed;
bottom: 0px;
left: 0px;
background-color: #EEE;
color: #00000099;
font-size: 12px;
padding: 4px 8px;
width: 100%;
border-top: 1px solid #33333312;
}