67 lines
1.1 KiB
CSS
67 lines
1.1 KiB
CSS
|
|
/*/////////////////////////////////////////////*/
|
|
/*IMPORT CSS*/
|
|
@import url(./reset.css);
|
|
@import url(./fonts.css);
|
|
@import url(./header.css);
|
|
@import url(./footer.css);
|
|
@import url(./images.css);
|
|
@import url(./text.css);
|
|
|
|
|
|
|
|
|
|
/*/////////////////////////////////////////////*/
|
|
/*GLOBAL VARIABLE*/
|
|
:root {
|
|
/* color range */
|
|
--color-purple: #ee1998;
|
|
--color-pink: #ff7bca;
|
|
--color-green: #8fce3c;
|
|
--color-yellow: #e3e00a;
|
|
--color-blue: #51cee4;
|
|
--color-water: #0c9cb5;
|
|
|
|
/* colors buttons */
|
|
--primary-hue: 12;
|
|
--color-button: hsl(var(primary-hue), 1%, 1%);
|
|
|
|
/*space between content and screen*/
|
|
--screen-gap: 5vw;
|
|
}
|
|
|
|
|
|
|
|
|
|
/*/////////////////////////////////////////////*/
|
|
/*GENERAL SETTINGS*/
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0px;
|
|
padding: var(--screen-gap);
|
|
width: calc(100% - 2 * var(screen-gap));
|
|
}
|
|
main {
|
|
min-height: calc(100vh - 70px);
|
|
}
|
|
.horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
.horizontal > * {
|
|
margin: 20px;
|
|
}
|
|
.vertical {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.vertical > * {
|
|
margin: 20px 0px;
|
|
}
|
|
|
|
|