-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (81 loc) · 1.48 KB
/
Copy pathstyle.css
File metadata and controls
95 lines (81 loc) · 1.48 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
90
91
92
93
94
95
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
display: flex;
justify-content: center;
}
.container {
width: 80%;
max-width: 800px;
margin: 50px 0;
}
.content-box {
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-left: 5px solid #242842;
}
h2 {
margin-top: 0;
color: #2c3e50;
}
blockquote {
font-style: italic;
background: #f9f9f9;
border-left: 10px solid #ccc;
margin: 20px 0;
padding: 10px 20px;
font-size: 1.2em;
}
cite {
display: block;
margin-top: 10px;
text-align: right;
font-weight: bold;
}
.poem {
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.poet {
font-weight: bold;
margin-top: 20px;
margin-left: 50%;
}
.next-button {
display: inline-block;
background-color: #4CAF50;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-size: 1em;
transition: background-color 0.3s ease;
}
.next-button:hover {
background-color: #45a049;
}
footer {
background-color: #f2f2f2;
color: #fff;
text-align: center;
padding: 20px 0;
width: 100%; /* 가로로 전체 페이지 차지 */
position: relative; /* 기본 위치에 있음 */
}
footer p {
margin: 5px 0;
font-size: 1em;
}
footer a {
color: #1a73e8;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}