/* Gästebuch - gb_style.css
 - https://werner-zenk.de */

@import url("sterne.css");

body {
 font-family: Verdana, Arial, Sans-Serif;
 font-size: 0.95em;
 cursor: Default;
 max-width: 690px; /* Max. Gästebuch-Breite */
}

a:link, a:visited {
 color: #003399;
 text-decoration: None;
}

a:hover {
 color: #FF8000;
 text-decoration: Underline;
}

h1, h2, h3 {
 font-weight: Normal;
}

 /* Bewertung */
span.bewertung_ok {
 color: Gold;
}

span.bewertung_ko {
 color: #555555;
}

img.smiley {
 cursor: Pointer;
}

 /* Einträge */
dl.eintrag:nth-child(even) {
 background-color: #C8C8C6;
 border: solid 1px #E3E9EF;
 border-radius: 6px;
 padding: 8px;
}

dl.eintrag:nth-child(odd) {
 background-color: #D3C5BC;
 border: solid 1px #E3E9EF;
 border-radius: 6px;
 padding: 8px;
}

/* Eingabefehler */
span.fehler {
 color: #FF0000;
}

/* Formularfelder */
textarea {
 font-family: Verdana, Arial, Sans-Serif;
 width: 320px;
 min-width: 320px;
 height: 200px;
 min-height: 200px;
}

input[type="text"],
 input[type="password"],
 input[type="url"],
 input[type="number"],
 input[type="time"],
 input[type="mail"],
 input[type="checkbox"],
 textarea,
 select {
  transition: box-shadow 0.30s ease-in-out;
  outline: none;
  padding: 3px;
  margin: 5px;
  border: 1px solid #DDDDDD;
  font-size: 0.95em;
}

input[type="text"]:focus,
 input[type="password"]:focus,
 input[type="url"]:focus,
 input[type="number"]:focus,
 input[type="time"]:focus,
 input[type="mail"]:focus,
 input[type="checkbox"]:focus,
 textarea:focus,
 select:focus {
  box-shadow: 0 0 5px rgb(149, 171, 238);
  border: 1px solid rgb(149, 171, 238);
}

input[type="submit"], input[type="button"] {
 font-size: 0.95em;
 letter-spacing: 1px;
 padding: 4px;
 margin: 5px;
}

p.clear {
 clear: Both;
}