This repository has been archived by the owner on Apr 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmask_list.css
125 lines (101 loc) · 1.9 KB
/
mask_list.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
117
118
119
120
121
122
123
124
125
@import url(//fonts.googleapis.com/earlyaccess/nanumgothic.css);
.nanumgothic * {
font-family: 'Nanum Gothic', sans-serif;
}
html,
body {
margin: 0;
height: 100vh;
width: 100%;
}
.container {
padding-top: 2rem;
}
/* Navbar에 들어가는 CSS들 */
#nav {
/* 사이즈 설정 */
width: 100%;
height: 60px;
/* 투명도 설정 */
opacity: 0.9;
/* 색 설정 */
background-color: rgb(117, 208, 231);
/* 위치 설정 */
position: relative;
z-index: 99;
/* 내부 아이템 위치 설정 */
display: flex;
flex-direction: row; /* column */
justify-content: center;
align-items: center;
text-align: center;
font-size: 2.5rem;
font-weight: bold;
}
.back-btn-wrapper {
/* 위치 설정 */
position: absolute;
left: 15px;
}
.back-btn-wrapper>i {
font-size: 33px;
color: white;
}
/* 테이블 설정 */
.dot {
height: 15px;
width: 15px;
border-radius: 50%;
display: inline-block;
}
.green {
background-color: green;
}
.red {
background-color: red;
}
.yellow {
background-color: yellow;
}
.grey {
background-color: grey;
}
table > * {
text-align: center;
}
/* 로딩바 설정 */
.loader-wrapper {
/* 사이즈 설정 */
width: 100vw;
height: 100%;
/* 위치 조정 */
position: relative;
top: 0;
left: 0;
z-index: 100;
/* 내부 아이템 위치 조정 */
display: flex;
justify-content: center;
align-items: center;
/* 색 설정 */
background-color: lightgrey;
opacity: 0.7;
}
.loader {
border: 16px solid #f3f3f3;
/* Light grey */
border-top: 16px solid #3498db;
/* Blue */
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}