-
-
Notifications
You must be signed in to change notification settings - Fork 778
/
2FA.scss
89 lines (73 loc) · 1.23 KB
/
2FA.scss
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
#myCanvas {
justify-content: center;
text-align: center;
margin: auto;
}
.donut-list li {
list-style: none;
margin: auto;
text-align: center;
padding: 1rem;
}
.dot {
height: 2rem;
width: 2rem;
padding-right: 1rem;
margin-right: 1rem;
margin-top: 1rem;
border-radius: 50%;
display: inline-block;
}
.used {
background-color: $color-skyblue;
}
.never-used {
background-color: $color-brightblue;
}
.indent {
padding-left: 2rem;
}
.highlight {
background-color: $color-lightgrey;
word-wrap: break-word;
}
.screenshot {
text-align: center;
}
.screenshot-2FA img {
display: block;
margin-left: auto;
margin-right: auto;
min-width: 200px;
}
.title-left {
text-align: left;
}
@media #{$bp-tablet-up} {
.screenshot-2FA img {
width: 100%;
}
}
@media #{$bp-below-tablet} {
.screenshot-2FA img {
width: 100%;
}
#myCanvas {
width: 80%;
}
.donut-list li {
padding-left: 0.1rem;
text-align: left;
}
}
@media #{$bp-below-desktop} {
.screenshot-2FA img {
min-width: 200px;
width: 100%;
}
}
@media #{$bp-desktop-up} {
.screenshot-2FA img {
width: 50%;
}
}