/* 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: 750px; /* Max. Gästebuch-Breite */
}

a:link, a:visited {
 color: #4169E1;
 text-decoration: None;
}

a:hover {
 text-decoration: Underline;
}

h1, h2, h3 {
 font-weight: Normal;
}

 /* Bewertung */
span.bewertung_ok {
 color: Gold;
}

span.bewertung_ko {
 color: Lightgrey;
}

span.smile {
 display: inline-block;
 font-size: 1rem;
 padding: 2px 3px 2px 3px;
 background-color: Transparent;
 vertical-align: Middle;
 margin: 2px;
 cursor: Pointer;
 transition: background 0.6s;
}

span.smile:hover {
 background-color: #EBF0FC;
 outline: Solid 1px #4169E1;
}

details {
 width: 500px;
}

details > summary:focus {
 border:0;
 outline:0;
}

 /* Einträge */
dl.eintrag:nth-child(even) {
 background-color: #FFFFFF;
 border: solid 1px #E3E9EF;
 border-radius: 6px;
 padding: 8px;
}

dl.eintrag:nth-child(odd) {
 background-color: #F8F8F8;
 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;
}