-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
40 lines (37 loc) · 926 Bytes
/
styles.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
.non-dev-mode-alert {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #ff4d4d;
color: #fff;
padding: 10px 20px;
border-radius: 5px;
z-index: 9999;
font-family: Arial, sans-serif;
font-size: 14px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
display: flex;
align-items: center;
justify-content: space-between;
}
.non-dev-mode-alert p {
margin: 0;
margin-right: 20px;
}
.non-dev-mode-alert .close-button {
background: none;
border: none;
color: #fff;
font-size: 14px;
/* 警告テキストと同じサイズ */
font-family: inherit;
/* 親要素(.non-dev-mode-alert)からフォントを継承 */
cursor: pointer;
padding: 0;
line-height: 1;
text-decoration: underline;
/* ボタンであることを示すために下線を追加 */
}
.non-dev-mode-alert .close-button:hover {
opacity: 0.8;
}