Skip to content

Commit

Permalink
Update terms.css
Browse files Browse the repository at this point in the history
リターンボタン
  • Loading branch information
akiy2009 authored Dec 1, 2024
1 parent 3066a1d commit 0fdebbc
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion terms.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,24 @@ body {
font-size: 0.9em;
color: #777;
}

.return-button {
position: fixed; /* 固定位置に配置 */
top: 20px; /* 上からの距離 */
left: 20px; /* 左からの距離 */
z-index: 1000; /* 他の要素の上に表示 */
}

.return-button a {
display: inline-block;
padding: 10px 15px;
background-color: #007BFF;
color: white;
text-decoration: none;
border-radius: 5px;
font-size: 14px;
font-weight: bold;
}

.return-button a:hover {
background-color: #0056b3;
}

0 comments on commit 0fdebbc

Please sign in to comment.