blob: de2042f17a7bb70abd2803ece682795348a77a4a (
plain)
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
|
@import './../global/globalCssVariables.module.scss';
.timeline-menu-container {
position: absolute;
display: flex;
box-shadow: $medium-gray 0.2vw 0.2vw 0.4vw;
flex-direction: column;
background: whitesmoke;
z-index: 10000;
width: 200px;
padding-bottom: 10px;
border-radius: 15px;
border: solid #bbbbbbbb 1px;
.timeline-menu-input {
font: $sans-serif;
font-size: 13px;
width: 100%;
text-transform: uppercase;
letter-spacing: 2px;
margin-left: 10px;
background-color: transparent;
border-width: 0px;
transition: border-width 500ms;
}
.timeline-menu-input:hover {
border-width: 2px;
}
.timeline-menu-header {
border-top-left-radius: 15px;
border-top-right-radius: 15px;
text-transform: uppercase;
background: $dark-gray;
letter-spacing: 2px;
.timeline-menu-header-desc {
font: $sans-serif;
font-size: 13px;
text-align: center;
color: whitesmoke;
}
}
.timeline-menu-item {
// width: 11vw; //10vw
height: 30px; //2vh
background: whitesmoke;
display: flex; //comment out to allow search icon to be inline with search text
justify-content: left;
align-items: center;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
transition: all 0.1s;
border-style: none;
// padding: 10px 0px 10px 0px;
white-space: nowrap;
font-size: 13px;
color: grey;
letter-spacing: 2px;
text-transform: uppercase;
padding-right: 20px;
padding-left: 10px;
}
.timeline-menu-item:hover {
border-width: 0.11px;
border-style: none;
border-color: $medium-gray;
border-bottom-style: solid;
border-top-style: solid;
background: $medium-blue;
}
.timeline-menu-desc {
padding-left: 10px;
font: $sans-serif;
font-size: 13px;
}
}
|