You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
710 B
45 lines
710 B
/* CSS kód */
|
|
/*
|
|
AltGr + b|n = {|}
|
|
AltGr + ,|. = <|>
|
|
*/
|
|
p {
|
|
color:yellow;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
.centerClass {
|
|
text-align: center;
|
|
}
|
|
.fancyText {
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
background-color: greenyellow;
|
|
}
|
|
.fancyBG {
|
|
background-color: aqua;
|
|
color: rgb(254, 0, 250);
|
|
}
|
|
|
|
table, tr, td {
|
|
/* border-width: 2px;
|
|
border-style: solid;
|
|
border-color:black */
|
|
border: 2px dashed black;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 10px;
|
|
border-collapse: collapse;
|
|
}
|
|
a:visited{
|
|
color: aqua;
|
|
}
|
|
a:hover {
|
|
background-color: blue;
|
|
}
|
|
td:hover {
|
|
background-color: rgba(0, 255, 81, 0.514);
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
}
|