Skip to content

Commit 13e8048

Browse files
デザイン
1 parent 3995709 commit 13e8048

1 file changed

Lines changed: 68 additions & 1 deletion

File tree

public/stylesheets/style.css

Lines changed: 68 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,72 @@
1+
body {
2+
font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
3+
background-color: #f4f7f6;
4+
color: #333333;
5+
line-height: 1.6;
6+
padding: 20px;
7+
}
8+
9+
a {
10+
color: #3498db;
11+
text-decoration: none;
12+
transition: all 0.3s ease;
13+
}
14+
15+
a:hover {
16+
color: #2980b9;
17+
}
18+
19+
h1 {
20+
font-size: 2.2rem;
21+
color: #2c3e50;
22+
border-bottom: 3px solid #3498db;
23+
padding-bottom: 10px;
24+
margin-bottom: 25px;
25+
letter-spacing: 1px;
26+
}
27+
128
.sidebar-nav {
229
margin-top: 20px;
3-
padding: 0;
30+
padding: 15px;
431
list-style: none;
32+
background-color: #ffffff;
33+
border-radius: 10px;
34+
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
35+
}
36+
37+
.sidebar-nav li {
38+
margin-bottom: 12px;
39+
}
40+
41+
.sidebar-nav li a {
42+
display: block;
43+
padding: 10px 15px;
44+
border-radius: 6px;
45+
background-color: #f8f9fa;
46+
color: #2c3e50;
47+
font-weight: bold;
48+
transition: all 0.3s ease;
49+
}
50+
51+
.sidebar-nav li a:hover {
52+
background-color: #3498db;
53+
color: #ffffff;
54+
transform: translateX(8px);
55+
box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
56+
}
57+
58+
div[class^="col-sm-10"] {
59+
background-color: #ffffff;
60+
padding: 30px;
61+
border-radius: 10px;
62+
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
63+
margin-top: 20px;
64+
}
65+
66+
ul {
67+
padding-left: 20px;
568
}
69+
70+
li {
71+
margin-bottom: 8px;
72+
}

0 commit comments

Comments
 (0)