-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
142 lines (122 loc) · 2.92 KB
/
main.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
@media screen and (max-width: 10cm) {
body > div {
margin: 0cm;
width: 100%;
}
}
@media screen and (min-width: 10cm) and (max-width: 20cm) {
body > div {
margin: 0.3cm 0cm 0cm 0.3cm;
width: calc(100% - 0.6cm);
}
}
@media screen and (min-width: 20cm) and (max-width: 30cm) {
body > div {
margin: 0.4cm 0cm 0cm 0.4cm;
width: calc(50% - 0.6cm);
}
}
@media screen and (min-width: 30cm) and (max-width: 50cm) {
body > div {
margin: 0.6cm 0cm 0cm 0.6cm;
width: calc(33% - 0.8cm);
}
}
@media screen and (min-width: 50cm) {
body > div {
margin: 1cm 0cm 0cm 1cm;
width: calc(25% - 1.25cm);
}
}
* {
font-family: Ubuntu;
}
body {
margin: 0px;
padding: 0px;
background-color: #fef5ce;
}
body > div {
float: left;
transition: height 0.5s;
}
body > div {
background-color: #151616;
}
body > div > div.list {
max-height: 11cm;
transition: max-height 0.3s ease;
overflow: hidden;
}
body > div.collapsed > div.list, body > div.collapsed > div.search {
max-height: 0px;
}
body > div > div.list > div.item, body > div > div.title, body > div > div.search {
display: block;
float: none;
position: relative;
height: 1cm;
width: calc(100% - 1cm - 2px);
background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 40%, transparent 60%, transparent 100%);
background-color: #eed222;
color: #293542;
font-size: 15pt;
margin: 0px;
padding: 0px 0.5cm 0cm 0.5cm;
border-color: #aaaaaa;
border-style: solid;
border-width: 1px;
transition: margin-left 0.2s, padding-left 0.2s, max-height 0.3s ease;
cursor: pointer;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
user-select: none;
overflow: hidden;
max-height: 1cm;
}
body > div > div.list > div.item {
border-top-width: 0px;
}
body > div > div.title {
font-weight: bold;
border-bottom-width: 0px;
margin-bottom: 4px;
}
body > div > div.list > div.item.selected {
margin-left: 0.2cm;
padding-left: 0.3cm;
}
body > div > div.list > div.item:active, body > div > div.title:active {
background: linear-gradient(to bottom right, transparent, transparent 40%, rgba(255, 255, 255, 0.1) 60%, rgba(255, 255, 255, 0.1) 100%);
background-color: #eed222;
}
body > div > div.item > span, body > div > div.list > div.item > span, body > div > div.title > span, body > div > div.search > input {
position: absolute;
top: 50%;
transform: translate(0, -50%);
}
body > div > div.list > div.item > span + span {
right: 0.5cm;
color: #526a84;
}
body > div > div.title:hover {
margin-left: 0px;
padding-left:0.5cm;
}
div#warnings > div.popup {
display: block;
float: none;
min-height: 1cm;
background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1) 40%, transparent 60%, transparent 100%);
font-size: 15pt;
margin: 0px;
padding: 0.4cm;
padding-left: 0.5cm;
border-color: #aaaaaa;
border-style: solid;
border-width: 1px;
}
div#warnings > div.popup > button {
float: right;
}