blob: 9946ce9d466583a30b4334a78cdf1299f07fb36c (
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
32
33
34
35
36
37
38
|
@import '../colors.scss';
.curl-output {
width: 100%;
font-size: 13px;
}
#passwd-form {
margin:auto;
}
.users-list {
.btn {
width: 70px;
}
td {
background-color: $color-primary-2;
border-top: 2px solid $color-primary-0;
vertical-align: middle;
text-align: center;
}
th {
background-color: $color-primary-1;
text-align: center;
}
}
.btn-color {
border: 3px solid #fff;
}
.dialog-footer {
.btn {
width: 80px;
}
}
|