début travail hugo
This commit is contained in:
parent
e1073ab21f
commit
80b7f7466d
22 changed files with 385 additions and 0 deletions
106
themes/anna/assets/sass/main.scss
Normal file
106
themes/anna/assets/sass/main.scss
Normal file
|
@ -0,0 +1,106 @@
|
|||
@import 'reset';
|
||||
|
||||
body {
|
||||
background-color: #e6e6e6;
|
||||
margin: 0;
|
||||
display: grid;
|
||||
}
|
||||
|
||||
@media (min-width: 1025px) {
|
||||
body {
|
||||
grid-template-columns: 250px;
|
||||
grid-template-areas: 'menu title' 'menu content';
|
||||
}
|
||||
|
||||
#navbar {
|
||||
height: 100vh;
|
||||
position: fixed;
|
||||
padding: 1rem;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
body {
|
||||
grid-template-areas: 'title' 'menu' 'content';
|
||||
}
|
||||
|
||||
#navbar {
|
||||
width: 100%;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
#title {
|
||||
grid-area: title;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-top: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
|
||||
h1 {
|
||||
margin: 0;
|
||||
font-size: xx-large;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin: 0;
|
||||
font-size: x-large;
|
||||
}
|
||||
}
|
||||
|
||||
#navbar {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
background-color: #eadecc;
|
||||
list-style: none;
|
||||
grid-area: menu;
|
||||
|
||||
li {
|
||||
&:not(:first-child) {
|
||||
margin-top: 1rem;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#logo {
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
#content {
|
||||
grid-area: content;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
color: #8c877d;
|
||||
}
|
||||
|
||||
.galery {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
|
||||
a img {
|
||||
margin: 0.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
#contact {
|
||||
background-color: #f6f1ea;
|
||||
width: 100%;
|
||||
|
||||
p {
|
||||
margin: 1rem;
|
||||
font-size: large;
|
||||
color: #8c877d;
|
||||
}
|
||||
}
|
48
themes/anna/assets/sass/reset.css
Normal file
48
themes/anna/assets/sass/reset.css
Normal file
|
@ -0,0 +1,48 @@
|
|||
/* http://meyerweb.com/eric/tools/css/reset/
|
||||
v2.0 | 20110126
|
||||
License: none (public domain)
|
||||
*/
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||
article, aside, canvas, details, embed,
|
||||
figure, figcaption, footer, header, hgroup,
|
||||
menu, nav, output, ruby, section, summary,
|
||||
time, mark, audio, video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure,
|
||||
footer, header, hgroup, menu, nav, section {
|
||||
display: block;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue