-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
116 lines (116 loc) · 2.13 KB
/
index.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
114
115
116
* {
padding: 0;
margin: 0;
font-family: system-ui, sans-serif;
}
body {
background-color: #ffffff;
}
#error-title, #base-title {
font-size: 30px;
}
#error-text, #base-text {
font-size: 15px;
color: #000000;
margin: 20px;
text-align: center;
}
#loading-text, #error-title {
color: #000000;
}
#loading, #error, #base {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 32;
position: fixed;
top: 0;
width: 100vw;
height: 100vh;
background-color: #ffffff;
animation-delay: 0.2s;
}
#base {
opacity: 0;
}
@keyframes hideLoadingScreen {
from {
opacity: 1;
}
to {
opacity: 0;
visibility: hidden;
}
}
#loading-circle {
position: relative;
width: 2rem;
height: 2rem;
border: 0.3rem solid #000000;
border-radius: 50%;
display: flex;
justify-content: center;
animation: loadingCircle 1s ease-in-out infinite;
}
@keyframes loadingCircle {
from {
transform: none;
}
to {
transform: rotate(360deg);
}
}
#loading-empty {
position: absolute;
background-color: #ffffff;
width: 1rem;
height: 2rem;
top: -1rem;
}
#token-box, #url-box {
display: flex;
justify-content: space-around;
align-items: center;
width: 280px;
}
#url-box {
width: 700px;
}
#token-input-box, #url-input-box {
width: 180px;
height: 24px;
background-color: #F6F8FA;
padding: 5px 12px;
border: 1px solid #D0D7DE;
border-radius: 6px;
display: flex;
justify-content: space-between;
align-items: center;
}
#url-input-box {
width: 600px;
}
#token-input, #url-input {
border: 0px;
vertical-align: middle;
line-height: 20px;
color: #24292F;
font-size: 14px;
outline: none;
background-color: #F6F8FA;
}
#url-input {
width: 600px;
}
#token-button, #raw-token-button, #url-button {
height: 34px;
color: #FFFFFF;
background-color: #2DA44E;
padding: 8px 12px;
border: 1px solid;
border-radius: 6px;
border-color: #8b949e;
vertical-align: middle;
cursor: pointer;
}