diff --git a/css_procviceni/bez.png b/css_procviceni/bez.png new file mode 100644 index 0000000..46269db Binary files /dev/null and b/css_procviceni/bez.png differ diff --git a/css_procviceni/index.html b/css_procviceni/index.html new file mode 100644 index 0000000..f104d19 --- /dev/null +++ b/css_procviceni/index.html @@ -0,0 +1,82 @@ + + + + + + + CSS procvičení + + + + +

Procvičení k maturitě

+

CSS - kaskádové styly

+

Tento text bude změněn za pomocí CSS

+ +
+

LOL TEXT DALSI RANDOM TEXT

+
+ +

Lorem ipsum dolor sit, amet consectetur adipisicing elit. In velit sapiente dolores a mollitia corporis molestias quia quisquam ullam. Corrupti odit deserunt aspernatur, voluptas sed deleniti saepe qui obcaecati ipsum!

+

Lorem ipsum dolor sit amet consectetur adipisicing elit. Impedit magnam consequatur, dolores voluptatibus quibusdam quis expedita deleniti dolorum animi temporibus soluta recusandae tempora omnis mollitia labore, earum nemo? Dolore, optio.

+

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Laborum numquam veritatis porro, fugiat facere repudiandae doloremque perferendis tempore aliquid commodi voluptate optio corrupti reprehenderit repellendus at nostrum placeat saepe qui!

+

Lorem ipsum dolor, sit amet consectetur adipisicing elit. Dolorum voluptates aliquam voluptate, facilis ducimus eius labore iure perspiciatis accusamus ea ratione dolore sunt totam libero, delectus cumque ipsum inventore necessitatibus?

+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
IDJmenoPrijmeniPohlaví
1PetrJanečekMuž
2JanaSoukupováŽena
3EvaKrálováŽena
4PavelNovákMuž
+ + +
    +
  1. olli
  2. +
  3. olli
  4. +
  5. olli
  6. +
+ +
+ + \ No newline at end of file diff --git a/css_procviceni/style.css b/css_procviceni/style.css new file mode 100644 index 0000000..aff4ff3 --- /dev/null +++ b/css_procviceni/style.css @@ -0,0 +1,46 @@ +h1 { + color:greenyellow; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + background-color: bisque; + } +/* CSS Stylizace */ +h2 { + color:red; +} + +h4 { + color: blue; +} +/* Třída */ +.cervena { + color: #FF0000; +} + /* ID */ +#zelena { + color: rgba(0, 255, 0,1); +} + /* dědičnost */ +div > p > span { + color: whitesmoke; + background-color: black; +} + +/* pozměnění předchozí hodnoty na novou*/ +h1{ + color: cyan; +} + +table, th, td { + border: 1px solid black; +} + +table { + border-collapse: collapse; +} +td { + padding: 15px; +} + +ul { + list-style-type: square; +} \ No newline at end of file