-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (65 loc) · 1.11 KB
/
style.css
File metadata and controls
77 lines (65 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* text shadow */
h1,h2,h3{
text-shadow: 2px 2px lightgrey;
}
/* inline or block */
h1{
display: block;
}
h2,h3{
display: inline;
}
/* 시맨틱태그 중 사용하지 않은 태그 */
aside {
width: 40%;
padding-left: 0.5rem;
margin-left: 0.5rem;
float: right;
box-shadow: inset 5px 0 5px -5px #29627e;
font-style: italic;
color: #29627e;
}
aside > p {
margin: 0.5rem;
}
/* <nav>에 hover 적용 */
/* 포지셔닝 사진 배치 */
.cat {
width: 70px;
height: 70px;
position: static;
/* top: 2%;
left: 30%; */
}
/* visibility hidden */
div {
padding: 24px;
background-color: pink;
display: inline-block;
visibility: hidden;
}
/* font */
.menu {
font-family: 'Times New Roman', Times, serif, sans-serif;
}
/* animation */
h1 {
animation-duration: 3s;
animation-name: slidein;
}
@keyframes slidein {
from {
margin-left: 100%;
width: 300%
}
to {
margin-left: 0%;
width: 100%;
}
}
/* 밴더 프리픽스 */
p{
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}