-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (50 loc) · 1.11 KB
/
style.css
File metadata and controls
57 lines (50 loc) · 1.11 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
body {
font-family: impact;
background-image: url(./img.gif);
}
.test-table>tr>td{
border: 1px solid black;
font-size: 16px;
font-weight: bold;
}
.test {
width: 100px;
height: 100px;
background-color: blue;
position: relative;
animation: move 1s ease-in-out infinite alternate;
}
@keyframes move {
from {
left: 0;
}
to {
left: 50px;
}
}
.color-test {
color: rgba(213, 187, 165, 0.953);
}
.font-test {
font-size: 12px;
}
.test-pa {
padding: 5px;
}
.button {
font-family: impact;
background-color: #4CAF50; /* 배경색상 */
border: none; /* 테두리 없음 */
color: black; /* 글자색상 */
padding: 15px 32px; /* 내부 패딩 */
text-align: center; /* 텍스트 중앙정렬 */
text-decoration: none; /* 밑줄 없음 */
display: inline-block; /* 인라인 블록 표시 */
font-size: 16px; /* 글자크기 */
margin: 4px 2px; /* 마진 */
cursor: pointer; /* 커서 모양 */
border-radius: 10px; /* 버튼 테두리 곡선 */
}
div{
text-align: center; /* 수평 중앙 정렬 */
}