mise en place debut media queries

This commit is contained in:
ethylotest
2021-04-11 13:12:11 +02:00
parent 0ac5ca2465
commit 9f41317f67
2 changed files with 16 additions and 33 deletions

View File

@@ -51,6 +51,7 @@
--gap-unit: 10px; --gap-unit: 10px;
--max-screen: 1110px; --max-screen: 1110px;
--base-font-size: 10px; --base-font-size: 10px;
--small-font-size: 8px;
--nav-height: 40px; --nav-height: 40px;
--aside-left-width: 200px; --aside-left-width: 200px;
--aside-right-width: 200px; --aside-right-width: 200px;

48
styles/skeleton.css vendored
View File

@@ -77,37 +77,19 @@ footer iframe {
position: sticky; position: sticky;
top: 0; top: 0;
} }
/*dropdown element*/
/* /* RESPONSIVE DESIGNi */
.dropdown
.drop .drop_title @media only screen and (max-width: 1000px) {
.drop_items html {
.drop font-size: var(--small-font-size);
.drop }
*/ .container_main {
/* flex-direction: column;
.dropdown { }
flex-direction: column; .container_main > * {
position: relative; margin: 20px;
margin-right: 20px; }
} }
.dropdown:after {
content: "▼";
position: absolute;
left: 100%;
top: 50%;
-ms-transform: translateY(-50%); old IE
transform: translateY(-50%);
}
.dropdown .drop_title {
}
.dropdown .drop_items {
position: absolute;
top: 100%;
left: 0px;
height: auto;
}
.dropdown .drop {
margin: var(--gap-unit);
}
*/