-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.css
More file actions
89 lines (69 loc) · 1.41 KB
/
demo.css
File metadata and controls
89 lines (69 loc) · 1.41 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
79
80
81
82
83
84
85
86
87
88
89
@import url('https://fonts.googleapis.com/css2?family=East+Sea+Dokdo&family=Yeon+Sung&display=swap');
.allclass{
font-family:'Yeon Sung';
background-color: red;
}
:root {
--primary-color : #FFD700;
}
textarea {
width: 85%;
padding: 1rem 1rem;
margin: auto;
height: 10vh;
display: block;
background-color: red;
border: 5px solid black;
font-family: 'Yeon Sung';
font-size: 3rem;
}
.ship{
float: right;
}
.section{
text-align: center;
font-size: 8rem;
}
.subject {
font-size: 8rem;
}
#btn {
background-color: var(--primary-color);
padding: 1rem 1rem;
margin: 2rem 7.5rem;
font-family: 'Yeon Sung';
font-size: 2rem;
}
#Translated {
border: 5px solid black;
display: block;
height: 10vh;
width: 85%;
margin: auto;
padding: 1rem 1rem;
font-family: 'Yeon Sung';
font-size: 2rem;
}
.rotate {
animation-duration: 5s;
animation-name: slidein;
animation-iteration-count: infinite;
}
@keyframes slidein {
0% {transform-origin: 0 100;
transform: rotate(90deg);
}
25% {transform-origin: 0 100;
transform: rotate(180deg);
}
75% {transform-origin: 0 100;
transform: rotate(270deg);
}
100% {transform-origin: 0 100;
transform: rotate(360deg);
}
}
.footer{
font-size: 2rem;
text-align: center;
}