-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (114 loc) · 2.12 KB
/
style.css
File metadata and controls
129 lines (114 loc) · 2.12 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* 폰트 */
.noto-sans-kr-basic {
font-family: "Noto Sans KR", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
.roboto-basic {
font-family: "Roboto", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
font-variation-settings: "wdth" 100;
}
.archivo-narrow-basic {
font-family: "Archivo Narrow", serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}
.kumar-one-regular {
font-family: "Kumar One", serif;
font-weight: 400;
font-style: normal;
}
/* General Styles */
body {
background-color: #e3e3e4;
font-family: "Noto Sans KR", serif;
color: #212529;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: auto;
}
h1 {
font-family: "Noto Sans KR", serif;
font-weight: 700;
color: #343a40;
text-align: center;
}
p {
color: #495057;
font-size: 1rem;
}
/* Issue Cards */
.card {
border: none;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease-in-out;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.card-body {
padding: 1.5rem;
}
.card-title a {
font-size: 1.2rem;
font-weight: bold;
color: #3a3a3a;
text-decoration: none;
}
.card-title a:hover {
color: #0056b3;
text-decoration: underline;
}
.card-text {
font-size: 0.95rem;
color: #6c757d;
}
/* Issue Details Page */
#issue-title {
font-family: "Noto Sans KR", serif;
font-size: 2rem;
font-weight: bold;
color: #343a40;
}
#issue-body {
font-family: "Noto Sans KR", serif;
font-size: 1rem;
color: #495057;
padding: 1rem;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
/* GitHub Link Button */
.btn-primary {
background-color: #007bff;
border: none;
padding: 0.75rem 1.5rem;
font-size: 1rem;
border-radius: 5px;
}
.btn-primary:hover {
background-color: #0056b3;
}
/* Responsive Design */
@media (max-width: 576px) {
.card-body {
font-family: "Noto Sans KR", serif;
padding: 1rem;
}
.card-title a {
font-family: "Noto Sans KR", serif;
font-size: 1rem;
}
.btn-primary {
width: 100%;
}
}