mirror of
https://gitee.com/dcren/initializr.git
synced 2025-09-19 01:58:16 +08:00

This commit fully revisits the main UI of the service: * upgrade to Twitter Bootstrap 3.2.x (CSS, theme, font, glyphs) * add specific CSS * add favicon Besides, starters are now regrouped by themes and those themes are nicely displayed in the UI Fixes gh-23, gh-11
27 lines
578 B
CSS
27 lines
578 B
CSS
body, h1, h2, h3 {
|
|
font-weight: 400;
|
|
font-family: "Varela Round",sans-serif;
|
|
}
|
|
|
|
.initializr-header {
|
|
color: #f1f1f1;
|
|
background-color: #34302d;
|
|
height: auto;
|
|
padding: 60px 60px;
|
|
background-size: 300px;
|
|
font-size: 20px;
|
|
margin-bottom: 40px;
|
|
}
|
|
@media (min-width: 768px) {
|
|
.initializr-header {
|
|
background: url(/img/platform-bg.png) #34302d 90% 50% no-repeat;
|
|
}
|
|
}
|
|
|
|
.initializr-header h1 {
|
|
font-family: Montserrat,sans-serif;
|
|
font-size: 40px;
|
|
line-height: 30px;
|
|
margin-bottom: 20px;
|
|
text-transform: uppercase;
|
|
} |