Rough architecture du site
This commit is contained in:
parent
bc87220397
commit
d4be54dfe2
12 changed files with 233 additions and 0 deletions
60
assets/css/style.css
Normal file
60
assets/css/style.css
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
*{
|
||||
--main-font: sans-serif;
|
||||
--font-size-L: 11vw;
|
||||
--text-color: black;
|
||||
}
|
||||
|
||||
body{
|
||||
font-family: var(--main-font);
|
||||
}
|
||||
|
||||
h1{
|
||||
font-weight: normal;
|
||||
line-height: inherit;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a{
|
||||
color: var(--text-color);
|
||||
}
|
||||
|
||||
/* menu */
|
||||
|
||||
menu{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
menu li a{
|
||||
font-size: var(--font-size-L);
|
||||
list-style: none;
|
||||
text-decoration: none;
|
||||
text-transform: initial;
|
||||
}
|
||||
|
||||
.home menu li .menu-item-home{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.projects menu li .menu-item-projects{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.about menu li .menu-item-about{
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
/* HOME */
|
||||
|
||||
.home h1{
|
||||
font-size: var(--font-size-L);
|
||||
}
|
||||
|
||||
/* PROJECTS */
|
||||
|
||||
|
||||
/* ABOUT */
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue