Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • b5cfb13ea2b274d96f1d771582ed3ea355965c2e
  • main default protected
2 results

styles.css

Blame
  • styles.css 2.13 KiB
    /* General Body */
    body {
        font-family: 'Arial', sans-serif;
        background-color: #f4f4f4;
        color: #333;
        margin: 0;
        padding: 0;
      }
      
      /* Header */
      header {
        background-color: #004d7a;
        color: white;
        padding: 20px;
        text-align: center;
      }
      
      header h1 {
        font-size: 3rem;
        margin: 0;
      }
      
      nav a {
        color: white;
        margin: 0 15px;
        text-decoration: none;
        font-size: 1.1rem;
      }
      
      nav a:hover {
        text-decoration: underline;
      }
      
      /* Tour Cards */
      .tour-list {
        padding: 20px;
      }
      
      .tour-card {
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin: 20px;
        overflow: hidden;
      }
      
      .tour-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }
      
      .tour-card-info {
        padding: 15px;
      }
      
      .tour-card-info h3 {
        font-size: 1.5rem;
        color: #333;
      }
      
      .tour-card-info p {
        font-size: 1rem;
        color: #666;
      }
      
      .price {
        font-size: 1.2rem;
        font-weight: bold;
        color: #004d7a;