css opravy

This commit is contained in:
Lukáš Kaňka 2024-01-08 10:55:53 +01:00
parent 5f908ec147
commit 795201e4e4
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,8 @@
:root {
--my-brown: brown;
--my-red: red;
}
footer { footer {
position: fixed; position: fixed;
bottom: 0; bottom: 0;
@ -26,6 +31,8 @@ footer {
body { body {
background-image: url(obrazky/white-21.jpg); background-image: url(obrazky/white-21.jpg);
background-size: 100%; background-size: 100%;
max-width: 1200px;
margin: auto;
/* obrázek na pozadí */ /* obrázek na pozadí */
/*background-attachment: fixed;*/ /*background-attachment: fixed;*/
/* pozadí neroluje */ /* pozadí neroluje */
@ -47,18 +54,18 @@ a.tlacitko {
a.tlacitko:link { a.tlacitko:link {
text-decoration: none; text-decoration: none;
color: brown; color: var(--my-brown);
} }
a.tlacitko:visited { a.tlacitko:visited {
text-decoration: none; text-decoration: none;
color: red; color: var(--my-red);
} }
a.tlacitko:hover { a.tlacitko:hover {
text-decoration: none; text-decoration: none;
/*border-bottom : 1px solid orange;*/ /*border-bottom : 1px solid orange;*/
color: brown; color: var(--my-brown);
} }
/* </style> */ /* </style> */
.dot { .dot {

View File

@ -1,6 +1,8 @@
:root { :root {
--my-black: black; --my-black: black;
--my-beckground: #ded4d4; --my-beckground: #ded4d4;
max-width: 1200px;
margin: auto;
} }
body { body {