2019-05-20 07:37:41 +02:00
|
|
|
// Fonts
|
|
|
|
@import url('https://fonts.googleapis.com/css?family=Nunito');
|
|
|
|
|
|
|
|
// Variables
|
|
|
|
@import 'variables';
|
|
|
|
|
|
|
|
// Bootstrap
|
2019-06-24 00:26:04 +02:00
|
|
|
//@import '~bootstrap/scss/bootstrap';
|
|
|
|
@import '~bulma/bulma';
|
|
|
|
|
|
|
|
nav.level {
|
|
|
|
padding: 0 20px;
|
|
|
|
/*postion: fixed;*/
|
|
|
|
}
|
|
|
|
|
|
|
|
#otp {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.twofaccount {
|
|
|
|
font-size: 1.7rem !important;
|
|
|
|
width: 250px;
|
|
|
|
display: block;
|
|
|
|
height: auto;
|
|
|
|
border-radius: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.twofaccount img {
|
|
|
|
height: 0.75em;
|
|
|
|
width: 0.75em;
|
|
|
|
margin-right: .1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.twofaccount span {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dots {
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dots li {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 5px;
|
|
|
|
width: 4px;
|
|
|
|
height: 4px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: hsl(348, 100%, 61%); /* red */
|
|
|
|
}
|
|
|
|
.dots li[data-is-active] ~ li {
|
|
|
|
background: hsl(0, 0%, 7%); /* grey */
|
|
|
|
}
|
|
|
|
|
2019-07-02 00:48:48 +02:00
|
|
|
.dots li:nth-child(-n+27) {
|
2019-06-24 00:26:04 +02:00
|
|
|
background: hsl(48, 100%, 67%); /* yellow */
|
|
|
|
}
|
|
|
|
|
2019-12-21 23:24:21 +01:00
|
|
|
.dots li:nth-child(-n+18) {
|
2019-06-24 00:26:04 +02:00
|
|
|
background: hsl(141, 71%, 48%); /* green */
|
2019-07-02 00:48:48 +02:00
|
|
|
}
|
|
|
|
|
2019-12-21 23:24:21 +01:00
|
|
|
.dots li:nth-child(3n+2), .dots li:nth-child(3n+3) {
|
|
|
|
//background-color: black;
|
2019-07-02 00:48:48 +02:00
|
|
|
display:none;
|
2019-12-21 23:24:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.dots li:last-child() {
|
|
|
|
// background-color: black;
|
|
|
|
//display:none;
|
2019-06-24 00:26:04 +02:00
|
|
|
}
|