1
0
Fork 0
This repository has been archived on 2024-06-28. You can view files and clone it, but cannot push or open issues or pull requests.
veranstaltung/style.css

49 lines
1.3 KiB
CSS
Raw Permalink Normal View History

2013-12-29 11:26:32 +01:00
tr:nth-child(2n) td {
2013-12-31 14:53:50 +01:00
background: #CEF6D8
}
tr:nth-child(2n-1) td {
2014-01-10 17:02:12 +01:00
background: #FAFA1F /* 2 Farben abwechselnd */
2013-12-29 11:26:32 +01:00
}
input, textarea {
2014-01-10 17:02:12 +01:00
width: 300px; /* alle Eingabefelder gleich breit machen */
}
2013-12-31 14:53:50 +01:00
table {
2014-01-10 17:02:12 +01:00
margin: auto; /* alle Tabellen zentrieren */
border-collapse: collapse; /* Tabellenzellen direkt aneinander (siehe http://www.css4you.de/border-collapse.html ) */
2013-12-31 14:53:50 +01:00
}
th {
2014-01-10 17:02:12 +01:00
font-size: 120%; /* Tabellen<65>berschriften gr<67><72>er und fett anzeigen */
2013-12-31 14:53:50 +01:00
font-weight: bold;
}
2014-01-10 17:02:12 +01:00
a{ /* Links designen */
2013-12-31 14:53:50 +01:00
font: bold 11px Arial;
text-decoration: none;
background-color: #EEEEEE;
color: #333333;
padding: 2px 6px 2px 6px;
border-top: 1px solid #CCCCCC;
border-right: 1px solid #333333;
border-bottom: 1px solid #333333;
border-left: 1px solid #CCCCCC;
-webkit-border-radius: 30px;
border-radius: 30px;
-moz-box-shadow: 2px 2px 5px 2px #ccc;
-webkit-box-shadow: 2px 2px 5px 2px #ccc;
box-shadow: 2px 2px 5px 2px #ccc;
}
html {
2014-01-10 17:02:12 +01:00
text-align: center; /* alles zentrieren */
2013-12-31 14:53:50 +01:00
}
2014-01-10 17:02:12 +01:00
nav a:visited, nav a:link { /* Men<65> "normal" formatieren */
2013-12-31 15:52:29 +01:00
box-shadow: none;
-moz-box-shadow: none;
-webkit-border-radius: 0px;
border-radius: 0px;
2014-01-04 15:52:17 +01:00
background: none;
border: solid;
font-family: "Times New Roman", Times, serif;
font-size: 100%;
2013-12-31 15:52:29 +01:00
}