-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
62 lines (50 loc) · 805 Bytes
/
style.css
File metadata and controls
62 lines (50 loc) · 805 Bytes
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
@charset "utf-8";
#main_page {
width: 500px;
height: 500px;
margin: auto; /*가, 세 같은 크기*/
}
.footer {
position: fixed; /*고정 위치 지정*/
left: 0;
bottom: 0;
width: 100%;
text-align: center;
background-color: skyblue;
color: white;
}
img {
border: 1.5px solid black;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
}
p {
padding: 10px;
margin-top: 15px;
font-weight: bold;
font-size: 15px;
}
.list_title {
display: none;
list-style: none;
font-size: 15px;
font-weight: bold;
}
a {
text-decoration: none;
}
a:link {
color: black;
}
a:visited {
color: black;
}
a:hover {
text-decoration: none;
color:crimson;
}
a:active {
color: black;
}