blob: 1cdb1fab40585d3cffa0ecd806a32753f8783f9f (
plain) (
blame)
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
|
@import '_variables';
@import '_mixins';
.user-quota {
font-size: 15px;
margin-top: 20px;
label {
margin-right: 5px;
}
}
.account-title {
@include settings-big-title;
&.account-title-danger {
color: lighten($color: #c54130, $amount: 10);
}
}
.progress {
@include progressbar;
width: 500px;
max-width: 100%;
}
@media screen and (max-width: $small-view) {
.progress {
width: 100%;
}
}
|