Prvni commit.

This commit is contained in:
vojta@alfred
2026-02-01 00:00:07 +01:00
commit 4e5c55e846
213 changed files with 17991 additions and 0 deletions
+117
View File
@@ -0,0 +1,117 @@
/*
* [Česky]
* Projekt: Robot Karel
* Copyright: Viz KOPIROVANI v kořenovém adresáři projektu
*
* [English]
* Project: Karel, the Robot
* Copyright: See COPYING in the top level directory
*/
/* Základní nastavení vývojového prostředí */
body {
font-family: Arial, Helvetica, sans-serif;
font-weight: normal;
font-size: 11pt;
cursor: default;
height: auto;
margin: 0;
padding: 0;
min-width: 680px;
}
#stranka {
z-index: -1;
margin: 0;
padding: 8px;
}
#stranka #okraj {
z-index: -1;
position: absolute;
width: 0;
height: 0;
}
#okno1 {
z-index: -1;
position: fixed;
right: 0;
bottom: 0;
}
#okno2 {
z-index: -1;
position: absolute;
width: 100%;
height: 100%;
}
form {
margin: 0;
padding: 0;
}
textarea {
font-family: Courier New, monospace;
font-weight: normal;
font-size: 11pt;
line-height: 120%;
}
.pravy-sloupec {
float: right;
width: 321px;
height: auto;
padding: 10px;
border: 1px solid;
border-top-color: rgb(90%, 90%, 90%);
border-left-color: rgb(90%, 90%, 90%);
border-right-color: rgb(40%, 40%, 40%);
border-bottom-color: rgb(40%, 40%, 40%);
background-color: rgb(75%, 75%, 75%);
}
.pravy-sloupec .centrovany {
width: 321px;
}
.informace,
.hlavni-sloupec,
.hlavni-sloupec-posledni {
width: auto;
padding: 10px;
margin-right: 350px;
border: 1px solid;
border-top-color: rgb(90%, 90%, 90%);
border-left-color: rgb(90%, 90%, 90%);
border-right-color: rgb(40%, 40%, 40%);
border-bottom-color: rgb(40%, 40%, 40%);
background-color: rgb(75%, 75%, 75%);
}
.informace,
.hlavni-sloupec {
margin-bottom: 7px;
}
.informace {
padding-top: 5px;
padding-bottom: 5px;
font-size: 69%;
}
.informace .levy {
float: left;
margin-right: 0.75em;
}
.informace .pravy {
text-align: right;
}
.informace a.pravy {
margin-left: 0.75em;
}