2024-12-29 17:12:54 +08:00
|
|
|
/*
|
|
|
|
* This is a manifest file that'll be compiled into application.css.
|
|
|
|
*
|
|
|
|
* With Propshaft, assets are served efficiently without preprocessing steps. You can still include
|
|
|
|
* application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
|
|
|
|
* cascading order, meaning styles declared later in the document or manifest will override earlier ones,
|
|
|
|
* depending on specificity.
|
|
|
|
*
|
|
|
|
* Consider organizing styles into separate files for maintainability.
|
|
|
|
*/
|
2024-12-30 17:24:18 +08:00
|
|
|
|
|
|
|
@import "bootstrap-sprockets";
|
|
|
|
@import "bootstrap";
|
|
|
|
|
|
|
|
/* universal */
|
|
|
|
body {
|
|
|
|
padding-top: 60px;
|
|
|
|
}
|
|
|
|
section {
|
|
|
|
overflow: auto;
|
|
|
|
}
|
|
|
|
textarea {
|
|
|
|
resize: vertical;
|
|
|
|
}
|
|
|
|
.center {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.center h1 {
|
|
|
|
margin-bottom: 10px;
|
2024-12-30 17:54:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* typography */
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
font-size: 3em;
|
|
|
|
letter-spacing: -2px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
letter-spacing: -1px;
|
|
|
|
margin-bottom: 30px;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: normal;
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 1.1em;
|
|
|
|
line-height: 1.7em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* header */
|
|
|
|
#logo {
|
|
|
|
float: left;
|
|
|
|
margin-right: 10px;
|
|
|
|
font-size: 1.7em;
|
|
|
|
color: #fff;
|
|
|
|
text-transform: uppercase;
|
|
|
|
letter-spacing: -1px;
|
|
|
|
padding-top: 9px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#logo:hover {
|
|
|
|
color: #777;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* footer */
|
|
|
|
footer {
|
|
|
|
margin-top: 45px;
|
|
|
|
padding-top: 5px;
|
|
|
|
border-top: 1px solid #eaeaea;
|
|
|
|
color: #777;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
color: #555;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer a:hover {
|
|
|
|
color: #222;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer small {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer ul {
|
|
|
|
float: right;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer ul li {
|
|
|
|
float: left;
|
|
|
|
margin-left: 15px;
|
2024-12-30 17:24:18 +08:00
|
|
|
}
|