git repos / oastat_static_web_generator

static_content/css/oastat.css

browsing at commit = 345541a740f5318db3007fe5f193d454c9ac355e

raw · blame · history

/*
  The CSS. It is under the MIT license because it is CSS.

  Copyright (c) 2019 Poul Sander

  Permission is hereby granted, free of charge, to any person
  obtaining a copy of this software and associated documentation files
  (the "Software"), to deal in the Software without restriction,
  including without limitation the rights to use, copy, modify, merge,
  publish, distribute, sublicense, and/or sell copies of the Software,
  and to permit persons to whom the Software is furnished to do so,
  subject to the following conditions:

  The above copyright notice and this permission notice shall be
  included in all copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  SOFTWARE.
*/

body {
    background: #f5f5f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 20px;
}

.main-section {
    max-width: 1400px;
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Table section start */
table {
    border-collapse: collapse;
    margin: 20px auto;
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

table, th, td {
    text-align: center;
}

th, td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background: #2c3e50;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

tr:nth-child(odd) {
    background: #f9f9f9;
}

tr:nth-child(even) {
    background: #ffffff;
}

tr:hover {
    background: #f0f7ff;
    transition: background-color 0.2s ease;
}

td {
    color: #555;
}
/*table section end*/

.update {
    font-size: 0.85em;
    color: #666;
    font-style: italic;
}

.levelshot {
    padding: 20px;
    text-align: center;
}

.levelshot img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}