This commit is contained in:
2025-06-16 11:36:17 +02:00
9 changed files with 123 additions and 30 deletions

View File

@@ -35,29 +35,4 @@ nav li a {
nav li a:hover {
background-color: orange;
}
#metanavi {
color: #4d4d4d;
font-weight: bold;
margin-bottom: 5px;
}
#metanavi a {
background: #09add0;
border: none;
width: 100px;
margin: 0 5px 0 5px;
float: right;
padding: 2px;
border-radius: 5px;
color:#fff;
cursor:pointer;
font-size: 12px;
text-decoration: none;
text-align: center;
}
#metanavi a:hover {
background: orange;
}

9
CSS/Element/button.css Normal file
View File

@@ -0,0 +1,9 @@
.btn{
background: var(--brand-primary);
color: var(--brand-white);
padding: 5px 10px;
font-weight: var(--font-weight-semibold);
font-size: var(--font-size-text);
border-radius: 3px;
text-decoration: none;
}

View File

@@ -1,7 +1,8 @@
@import url(variables.css);
@import url(Block/header.css);
@import url(Block/footer.css);
@import url(Element/logo.scss);
@import url(Element/logo.css);
@import url(Element/button.css);
*, *:before, *:after {
-moz-box-sizing: border-box;