test_home.css
1.06 KB
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
#uni
{
position:fixed;
top:600px;
left:1400px;
}
#dao
{
position:fixed;
top:550px;
left:150px;
}
#tex1
{
font-family: 'Nanum Gothic';
font-size:80px;
font-weight: bold;
}
#tex2
{
font-family: 'Nanum Gothic';
font-size:30px;
font-weight: bold;
}
#btn
{
position: relative;
top:40%;
width:100%;
height:12%;
font-family: 'Nanum Gothic';
font-size:large;
font-weight: bold;
color:white;
background-color: black;
text-align: center;
border-radius: 12px;
}
#index
{
position:absolute;
left:55%;
}
.box {
width: 500px;
height:700px;
margin: 0 auto;
display:block;
background-color: white;
animation: fade-in 0.8s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes spin {
100% {
transform: rotate(360deg);
}
}
.spinner
{
display: inline-block;
width: 50px;
height: 50px;
border: 5px solid black;
border-color: black transparent transparent;
border-radius: 50%;
animation: spin 1s linear infinite;
}