blob: 633a194fed24048bb62e2e366beabe0c8e804835 (
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
|
@import "../globalCssVariables";
.toggle-title {
display: flex;
align-items: center;
color: $light-color;
text-transform: uppercase;
flex-direction: row;
justify-content: space-around;
padding: 5px;
.toggle-option {
width: 50%;
text-align: center;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
}
.toggle-bar {
height: 50px;
background-color: $alt-accent;
border-radius: 10px;
padding: 5px;
display: flex;
align-items: center;
.toggle-button {
width: 275px;
height: 100%;
border-radius: 10px;
background-color: $light-color;
}
}
|