-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
113 lines (110 loc) · 2.06 KB
/
styles.css
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
.proxy_address_stuff {
display: block;
}
.proxy-input {
display: none;
}
.login-save {
display: none;
}
.activation-code-title {
font-size: 30px;
font-weight: bold;
}
.license-portal {
text-align: center;
border-style: solid;
height: 100px;
width: 300px;
padding-bottom: 17px;
}
.activation-input {
font-size: 15px;
}
.entire-license {
margin: 19% 0;
position: absolute;
left: 35%;
}
.welcome-header {
font-size: 30px;
font-weight: bold;
text-align: center;
}
.thank-you {
text-align: center;
padding-top: 30px;
padding-bottom: 30px;
}
.welcome-continue-btn {
font-size: 20px;
display: block;
margin: 0 auto;
}
.login-none {
text-align: center;
}
.login-wizard{
text-align: center;
font-weight: bold;
width: 400px;
border-style: double;
padding-top: 30px;
padding-bottom: 30px;
}
.login-wizard-btn{
font-size: 20px;
}
.create-instance {
float:left;
height:650px;
width:350px;
border-right:solid;
}
.create-instance-header {
text-align: center;
font-weight: bold;
}
.running-tasks {
width: 400px;
}
.running-tasks-header {
text-align: center;
font-weight: bold;
}
.runningDiv {
display:inline-block;
text-align: center;
width: 400px;
border: solid;
}
.settings-header {
text-align: center;
font-weight: bold;
border-top: solid;
padding-top: 20px;
}
.cvv-container {
text-align: center;
}
.start-now-btn {
font-size: large;
border-radius: 5px;
}
@import url(https://fonts.googleapis.com/css?family=Roboto:100);
#loading {
margin: 0 auto;
width: 50px;
height: 50px;
border: 3px solid rgba(0, 0, 0, 0.3);
border-radius: 50%;
border-top-color: blue;
animation: spin 1s ease-in-out infinite;
-webkit-animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
to { -webkit-transform: rotate(360deg); }
}