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
|
* {
font-family: CMS, Arial, Calibri, Ubuntu, Roboto, Liberation Sans, Helvetica, sans-serif;
}
body {
background-image: url("../../resources/image/config.jpg") !important;
background-size: 100%;
background-repeat: no-repeat;
background-position: initial;
}
.box {
width: 60% !important;
border-radius: 5px;
box-shadow: 1px 1px 2px gray;
padding: 20px;
background-color: rgb(235, 235, 235);
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
}
.loader {
width: 56px;
height: 56px;
filter: brightness(0%);
}
.tip-red {
color: rgb(255, 75, 75);
}
.tip-green {
color: rgb(132, 255, 75);
}
.tip-orange {
color: rgb(255, 132, 75);
}
.termsbox {
background: white;
border: none;
border-color: black;
border-style: solid;
border-width: 1px;
border-radius: 5px;
padding: 5px;
box-shadow: 1px 1px 2px black;
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 0; }
100% { opacity: 1; }
}
.finisher {
width: 256px;
height: 256px;
filter: brightness(0%);
}
.update-cancel {
padding: 5px 10px;
border: 1px solid lightgray;
border-radius: 5px;
border-bottom-width: 2px;
background: white;
cursor: pointer;
transition: background 200ms, border-color 200ms;
}
.update-cancel:hover {
background: lightgray;
border-color: gray;
}
.update-cancel:active {
background: gray;
border-color: black;
}
|