-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmapPrinter.module.css
More file actions
122 lines (108 loc) · 1.98 KB
/
mapPrinter.module.css
File metadata and controls
122 lines (108 loc) · 1.98 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
.mapPrinterContainer {
position: absolute;
z-index: 1000;
top: 250px;
right: auto;
background-color: rgb(0 0 0 / 50%);
padding: 10px;
border-radius: 5px;
margin-left: 10px;
}
.sizeButtonContainer {
display: flex;
flex-direction: row;
align-items: center;
}
.printInput {
margin: 5px 5px 5px 0px;
width: 4rem;
height: 1.3rem;
border-radius: 4px;
border: 1px solid #d3d3d3;
border-color: grey #d3d3d3 #d3d3d3 grey;
font-size: 0.9rem;
}
.mapScaleText {
font-size: 0.86rem;
font-weight: 700;
color: white;
}
.divider {
border-bottom: 2px #999999 solid;
padding-bottom: 5px;
}
.sizeButtonsContainer {
display: flex;
flex-direction: row;
}
.sizeButton {
width: 4rem;
height: 2rem;
margin: 0.2rem 0.2rem 0.2rem 0;
border-radius: 6px;
}
.printButton {
color: #fff;
text-align: center;
font-size: 1rem;
border-radius: 0;
background-color: var(--busBlue);
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
width: 5rem;
height: 2rem;
border-radius: 5px;
margin-top: 15px;
}
.disabled {
background-color: mediumGray;
}
.printTitle {
text-transform: uppercase;
font-size: 0.8rem;
font-weight: 700;
color: white;
margin-top: 10px;
}
.sizeText {
margin-right: 5px;
color: white;
}
input:-webkit-autofill,
input:-webkit-autofill:focus {
transition:
background-color 600000s 0s,
color 600000s 0s;
}
.customSlider {
-webkit-appearance: none;
width: 100%;
height: 15px;
border-radius: 5px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: 0.2s;
transition: opacity 0.2s;
}
.customSlider:hover {
opacity: 1;
}
.customSlider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
border-radius: 50%;
background-color: var(--busBlue);
cursor: pointer;
}
.customSlider::-moz-range-thumb {
width: 25px;
height: 25px;
border-radius: 50%;
background-color: var(--busBlue);
cursor: pointer;
}