123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- body {
- margin: 40px auto;
- padding: 0 1rem;
- width: 80%;
- max-width: 1024px;
- line-height: 1.6;
- font-size: large;
- color: #444;
- }
- h1, h2, h3, h4, h5, h6 {
- color: #222222;
- font-size: large;
- font-weight: bold;
- }
- small {
- font-size: x-small;
- }
- nav ul {
- margin: 0;
- list-style-type: none;
- }
- nav ul li {
- display: inline;
- padding: 0 20px 0 0;
- }
- nav ul:nth-child(odd) li {
- float: left;
- }
- nav ul:nth-child(even) li {
- float: right;
- }
- nav ul li a,
- nav ul li a:active,
- nav ul li a:visited {
- text-decoration: none;
- font-weight: bold;
- color: white;
- }
- nav ul li a:hover {
- text-decoration: underline;
- color: #000;
- }
- nav ul li a img {
- height: 40px;
- }
- nav:after {
- content: '';
- display: block;
- clear: both;
- }
- nav ul li a img.logo {
- height: 2rem;
- margin: 0 1rem 0 0;
- width: 2rem;
- vertical-align: middle;
- }
- a,
- a:active,
- a:visited,
- a:hover {
- color: #000;
- }
- table {
- background-color: #ddd;
- }
- tr:nth-child(even) {
- background-color: #fff;
- }
- header:before {
- content: '';
- display: block;
- z-index: -10;
- width: 100%;
- background-color: #ff7f00;
- position: absolute;
- top: 0;
- left: 0;
- margin: 0;
- padding: 0;
- }
- header, header:before {
- height: 120px;
- }
- header.home {
- text-align: center;
- }
- header.home:before {
- content: '';
- display: block;
- z-index: -1;
- width: 100%;
- background-color: transparent;
- background-image: url("/banner.png");
- background-repeat: no-repeat;
- background-size: 300px;
- background-position: center top 160px;
- position: absolute;
- top: 0;
- left: 0;
- margin: 0;
- padding: 0;
- }
- header.home:after {
- content: '';
- display: block;
- z-index: -2;
- width: 100%;
- /*background-color: #f83600;*/
- /*background-image: linear-gradient(to right, #f83600 0%, #f9d423 100%);*/
- background-image: linear-gradient(160deg, rgba(249,212,35,1) 0%, rgba(248,0,0,1) 150%);
- background-repeat: no-repeat;
- background-size: 100%;
- position: absolute;
- top: 0;
- left: 0;
- margin: 0;
- padding: 0;
- }
- @media only screen and (min-width: 500px) {
- header.home:before {
- background-size: 500px auto;
- background-position: center top 80px;
- }
- }
- header.home {
- height: 640px;
- }
- header.home:before, header.home:after {
- height: 800px;
- }
- header.home div * {
- color: white;
- }
- footer:after {
- content: '';
- display: block;
- z-index: -1;
- width: 100%;
- height: 60px;
- background-color: #ff7f00;
- background-repeat: no-repeat;
- background-position: center;
- position: absolute;
- left: 0;
- margin: 0;
- padding: 0;
- }
- footer {
- text-align: center;
- color: #000;
- }
- .widgets {
- display: block;
- z-index: -1;
- width: 100%;
- min-height: 180px;
- position: absolute;
- left: 0;
- margin: 0;
- padding: 0;
- text-align: center;
- }
- .widgets, .widgets * {
- font-size: small;
- background-color: #ff7f00!important;
- color: white!important;
- }
- .widgets .widget {
- margin-bottom: 10px;
- min-width: 100px;
- display: inline-table;
- }
- .community-title {
- font-size: xx-large;
- padding-top: 400px;
- }
- .display-none {
- display: none;
- }
- .display-block {
- display: block;
- }
- .tags-max-width {
- max-width: 100px;
- }
- .blue {
- color:rgb(0,102,204);
- }
- img.valign-middle {
- vertical-align: middle;
- }
|