-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
86 lines (75 loc) · 1.58 KB
/
index.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
:root {
--headerColor: #ce1919;
}
body {
padding: 0;
margin: 0;
}
.miew-header {
background-color: var(--headerColor);
font-family: monospace;
color: white;
margin:0;
padding: 10px;
position: sticky;
top: 0;
box-shadow: inset 0 0 10px 0 #ddd;
text-align:center;
}
.miew-footer {
padding: 10px 0 0 10px;
}
.miew-preview {
border: 1px dotted rgba(116, 108, 108, 0.863);
margin: 0;
padding: 20px;
font-size: smaller;
}
.miew-nav {
position: fixed;
top: 5px;
right: 50px;
height: 3em;
overflow: hidden;
}
.miew-nav:hover {
height: 70%;
width:auto;
overflow-y: scroll;
}
.miew-nav-opened {
background: transparent url('assets/files.svg') 0 0 no-repeat;
height: 3em;
position: sticky;
top: 0;
}
.miew-settings {
width: 20%;
height: 1.8 em;
position: fixed;
top: 0;
left:65%;
color: rgb(228, 228, 180);
font-size: small;
font-family: cursive;
cursor: help;
}
.miew-filesList {
border: 1px dotted rgba(71, 68, 68, 0.377);
border-radius: 15px;
background-color: white;
}
.miew-file {
font-size: 0.7em;
font-family: cursive;
width: 200px;
margin:5px;
text-align: center;
text-overflow: ellipsis;
}
.miew-file:hover {
color: var(--headerColor);
border-bottom: solid 1px grey;
font-weight: bold;
cursor: pointer;
}