-
Notifications
You must be signed in to change notification settings - Fork 0
/
share.css
74 lines (63 loc) · 1.25 KB
/
share.css
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
/* footer styles */
footer {
text-align: center;
padding: 2em 0;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
button {
padding: 0.8em;
font-size: 100%;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
width: 10rem !important;
height: 3.5rem;
max-width: 150px;
margin: 0 0.5rem;
z-index: 1;
}
#shareButton {
background-color: #fff;
color: #e8344e;
font-weight: bold;
transition: background-color 0.3s ease;
}
#studyButton {
background-color: #E8334E;
color: white;
font-weight: bold;
transition: background-color 0.3s ease;
}
#studyButton a {
color: white;
text-decoration: none;
}
/* 화면 크기가 작을 때의 스타일 */
@media (max-width: 768px) {
#shareButton,
#studyButton {
width: 90%;
/* 더 작은 화면에서 버튼 너비를 늘림 */
padding: 0.75em;
font-size: 90%;
/* 작은 화면에서 폰트 크기 줄임 */
}
}
/* 호버 효과는 모든 화면 크기에 적용 */
#shareButton:hover {
background-color: #fae1e1;
}
/* 호버 효과는 모든 화면 크기에 적용 */
#studyButton:hover {
background-color: #bc2a40;
}
/* 하단부 안내 */
.copyright {
width: 25rem;
font-size: 1rem;
}