aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/views/Config.scss
blob: b0b899f3d1376764fa02f9f3a1e658fc1ee3ae84 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
@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;
  }
}

.blink{

	span{
		animation: blink 1s linear infinite;
	}
	@keyframes blink{
		0%{opacity: 0;}
		50%{opacity: .5;}
		100%{opacity: 1;}
	}

}