-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (55 loc) · 913 Bytes
/
style.css
File metadata and controls
63 lines (55 loc) · 913 Bytes
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
html,
body {
height: 100%;
margin: 0;
}
.wrapper {
padding: 60px;
box-sizing: border-box;
height: 100%;
}
.caret {
float: right;
transition: transform 0.2s;
}
.dd-menu {
margin: 0 auto;
border: 1px solid black;
font: normal 15px sans-serif;
width: 100%;
border-radius: 4px;
max-width: 200px;
position: relative;
}
.menu-values {
line-height: 25px;
position: absolute;
background-color: white;
width: 100%;
top: 25px;
left: -1px;
right: 0;
border-bottom: 1px solid black;
border-left: 1px solid black;
border-right: 1px solid black;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.menu-values .item {
padding: 5px;
cursor: pointer;
}
.menu-values .item:hover {
background-color: darkgray;
color: white;
}
.rotate-caret {
transform: rotate(90deg);
}
.selector {
cursor: pointer;
padding: 5px;
}
p {
margin-top: 10px;
}