Созданы новые css-файлы, изменен main.css и application_settings

This commit is contained in:
ARLakhin
2026-03-26 00:18:00 +03:00
parent 70f051da92
commit df4c307e24
5 changed files with 51 additions and 18 deletions
+3 -1
View File
@@ -20,4 +20,6 @@
@use "base"; @use "base";
@use "application_settings"; @use "application_settings";
@use "main"; @use "main";
@use "header";
@use "nav";
@@ -31,3 +31,12 @@ body {
width: 90vw; width: 90vw;
margin: 0 auto; margin: 0 auto;
} }
.welcome__container__laptop {
margin-top: 15%;
text-align: center;
font-size: 36px;
font-family: "Ubuntu sans";
font-weight: 600;
}
+13
View File
@@ -0,0 +1,13 @@
.main-header {
width: 100%;
font-size: 2.5rem;
font-weight: var(--bold);
text-align: center;
position: relative;
}
.exit {
position: absolute;
top: 0;
right: 5px;
}
+20 -17
View File
@@ -1,18 +1,3 @@
.main-header {
width: 100%;
text-align: center;
font-size: 2.5rem;
font-weight: var(--bold);
}
.nav-container {
width: 20%;
margin: 0 auto;
display: flex;
justify-content: space-around;
}
.add-new { .add-new {
text-align: center; text-align: center;
width: 100%; width: 100%;
@@ -24,13 +9,11 @@ a.link {
border-radius: 20px 20px; border-radius: 20px 20px;
padding: 10px; padding: 10px;
font-size: 1.5rem; font-size: 1.5rem;
} }
a.link:hover { a.link:hover {
background-color: black; background-color: black;
color: var(--white-color) color: var(--white-color)
} }
.header{ .header{
@@ -56,6 +39,11 @@ a.link:hover {
margin: 0 auto 10px; margin: 0 auto 10px;
} }
.informations-data h2 {
font-weight: 700;
font-size: 2.5em;
}
.information-data { .information-data {
border: 2px solid black; border: 2px solid black;
display: flex; display: flex;
@@ -75,3 +63,18 @@ a.link:hover {
padding: 10px; padding: 10px;
margin: 10px 0; margin: 10px 0;
} }
.information-button {
align-self: center;
margin-block: 8px;
}
.information-table table {
border-collapse: collapse;
text-align: center;
}
.information-table td, th {
padding: 5px;
border: 3px solid black;
}
+6
View File
@@ -0,0 +1,6 @@
.nav-container {
width: 25%;
margin: 0 auto;
display: flex;
justify-content: space-around;
}