ukázka/css/styl.css
author František Kučera <franta-hg@frantovo.cz>
Thu, 24 Oct 2019 22:06:44 +0200
changeset 136 d5feb9d8ebc3
parent 120 4d33f14e99dd
permissions -rw-r--r--
fix license version: GNU GPLv3
     1 body {
     2 	background-color: #3c3b37;
     3 	font-family: sans-serif;
     4 	text-align: center;
     5 	font-size: 16px;
     6 }
     7 
     8 a img {
     9 	border: none;
    10 }
    11 
    12 a:hover {
    13 	text-shadow: 1px 1px 1px #eee;
    14 }
    15 a[href^="https://"]:hover {
    16 	text-shadow: 1px 1px 1px #6f6;
    17 }
    18 a[href^="http://"]:hover {
    19 	text-shadow: 1px 1px 1px #66f;
    20 }
    21 
    22 #tělo {
    23 	width: 900px;
    24 	text-align: left;
    25 	margin: 0 auto;
    26 	margin-top: 32px;
    27 	margin-bottom: 32px;
    28 	background-color: #77bed2;
    29 	padding-left: 20px;
    30 	padding-right: 20px;
    31 	padding-top: 2px;
    32 	padding-bottom: 2px;
    33 	border-radius: 8px;
    34 }
    35 
    36 #nabídka {	
    37 	width: 10.3em;
    38 	position: relative;
    39 	left: -20px;
    40 	top: -12px;
    41 	background-color: #3c3b37;
    42 	border-top-right-radius: 8px;
    43 	border-bottom-right-radius: 8px;
    44 	padding-top: 6px;
    45 	padding-bottom: 6px;
    46 	padding-left: 10px;
    47 	list-style-type: none;
    48 	float: left;
    49 }
    50 
    51 #nabídka a {
    52 	color: white;
    53 }
    54 
    55 #nabídka a:hover {
    56 	color: #77bed2;
    57 	text-shadow: none;
    58 }
    59 
    60 #text {
    61 	min-height: 400px;
    62 }
    63 
    64 #zápatí {
    65 	font-size: small;
    66 	text-align: center;
    67 }
    68 
    69 pre {
    70 	background-color: #ddf;
    71 	padding: 6px;
    72 	border-radius: 4px;
    73 	overflow: auto;
    74 	
    75 	-moz-tab-size: 4;
    76 	-o-tab-size: 4;
    77 	tab-size: 4;
    78 }
    79 
    80 .zdroják-ke-stažení {
    81 	font-size: 60%;
    82 	margin-top: -20px;
    83 	padding-right: 0px;
    84 	text-align: right;
    85 }
    86 .zdroják-ke-stažení span {
    87 	background-color: #ddf;
    88 	color: black;
    89 	padding: 5px;
    90 	border-radius: 0px 0px 4px 4px;
    91 	padding-top: 0px;
    92 	padding-bottom: 0px;
    93 }
    94 
    95 .zdroják-ke-stažení a {
    96 	text-decoration: none
    97 }
    98 
    99 .diagram {
   100 	background-color: #ddf;
   101 	padding: 6px;
   102 	border-radius: 4px;
   103 	text-align: center;
   104 	max-width: 100%;
   105 	overflow: auto;
   106 }
   107 
   108 .diagram .nadpis {
   109 	font-size: 60%;
   110 	padding: 4px;
   111 	margin-top: 6px;
   112 	margin-bottom: -6px;
   113 	margin-left: -6px;
   114 	margin-right: -6px;	
   115 	background-color: #d0d0f0;
   116 	border-radius: 0px 0px 4px 4px;
   117 }
   118 
   119 table {
   120 	border-collapse:collapse;
   121 	box-shadow: 3px 3px 3px grey;
   122 	margin-top: 10px;
   123 	margin-bottom: 10px;
   124 }
   125 td, th {
   126 	border: 1px solid black;
   127 	padding-top: 4px;
   128 	padding-bottom: 4px;
   129 	padding-left: 6px;
   130 	padding-right: 6px;
   131 	font-weight: normal;
   132 }
   133 td.číslo {
   134 	text-align: right;
   135 }
   136 thead tr {
   137 	background: grey;
   138 	color:black;
   139 }
   140 tbody tr:hover {
   141 	background-color: silver;
   142 	color:black;
   143 }
   144 
   145 .rot13 span {
   146 	color: gray;
   147 	font-family: monospace;
   148 }
   149 
   150 .rot13 a {
   151 	margin-left: -5px;
   152 	color: green;
   153 	text-decoration: none;
   154 }
   155 
   156 .rot13 a:hover {
   157 	color: red;
   158 }
   159 
   160 sup, sub {
   161 	vertical-align: 0;
   162 	position: relative;
   163 }
   164 sup {
   165 	bottom: 1ex;
   166 }
   167 sub {
   168 	top: 0.8ex;
   169 }
   170 
   171 sup.podČarou-odkaz a {
   172 	color: grey;
   173 	text-decoration: none;
   174 }
   175 
   176 div.podČarou-poznámky {
   177 	font-size: 66%;
   178 	border-top:		1px solid grey;
   179 	border-bottom:	1px solid grey;
   180 	padding-left: 20px;
   181 	padding-top: 4px;
   182 	padding-bottom: 4px;
   183 }
   184 
   185 div.podČarou-poznámky p {
   186 	margin-top: 2px;
   187 	margin-bottom: 2px;
   188 }
   189 
   190 div.podČarou-poznámky a.podČarou-odkaz-zpět {
   191 	color: black;
   192 	text-decoration: none;
   193 	margin-right: 4px;
   194 }
   195 
   196 
   197 blockquote {
   198 	background-color: #ddf;
   199 	padding-top: 3px;
   200 	padding-bottom: 3px;
   201 	padding-left: 16px;
   202 	padding-right: 16px;
   203 	border-radius: 4px;
   204 }
   205