mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
58 lines
880 B
CSS
58 lines
880 B
CSS
|
.main > ul {
|
||
|
list-style-type: none;
|
||
|
padding: 0;
|
||
|
padding-top: 4px;
|
||
|
}
|
||
|
.main > ul > li {
|
||
|
position: relative;
|
||
|
padding: 30px 0 30px;
|
||
|
border-bottom: 1px solid #e6e6e6;
|
||
|
}
|
||
|
.main > ul > li:first-child {
|
||
|
margin-top: -30px;
|
||
|
}
|
||
|
.main h2,
|
||
|
.main h3 {
|
||
|
letter-spacing: 1px;
|
||
|
margin: 0;
|
||
|
text-transform: uppercase;
|
||
|
}
|
||
|
.main h2 {
|
||
|
font-size: 20px;
|
||
|
letter-spacing: 1px;
|
||
|
margin-left: 120px;
|
||
|
}
|
||
|
.main h2 a {
|
||
|
color: #444;
|
||
|
}
|
||
|
.main h2 a:hover {
|
||
|
color: #f33;
|
||
|
}
|
||
|
.main h3 {
|
||
|
font-size: 13px;
|
||
|
color: #999;
|
||
|
position: absolute;
|
||
|
left: 0;
|
||
|
top: 33px;
|
||
|
}
|
||
|
@media screen and (max-width: 420px) {
|
||
|
.main h2 {
|
||
|
font-size: 16px;
|
||
|
margin-left: 0;
|
||
|
}
|
||
|
.main h2 a:hover {
|
||
|
color: #f66;
|
||
|
}
|
||
|
.main h3 {
|
||
|
font-size: 11px;
|
||
|
position: static;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
.main ul li {
|
||
|
padding: 18px 0 20px;
|
||
|
}
|
||
|
.main ul li:first-child {
|
||
|
margin-top: -35px;
|
||
|
}
|
||
|
}
|