CSS не работает со всеми шаблонами в Django Web App - PullRequest
0 голосов
/ 26 сентября 2019

Я новичок в Django Web Development и создаю свое первое веб-приложение.Нужна ваша помощь по одному из пунктов, которые я застрял.Поэтому я создал представления, шаблоны и статический каталог для хранения моих CSS-файлов.Стиль CSS прекрасно работает с моим шаблоном home.html, но по какой-то причине, когда я пытаюсь использовать те же файлы CSS для других связанных страниц на том же сайте, он не оказывает никакого влияния на страницу.Страница остается такой же, как и при базовом форматировании.Буду признателен за любую помощь.

Я пытался использовать тот же файл style.css, связанный с home.html, для другой страницы на сайте, например team.html, но он не работает.

Home.html


    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title></title>
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
        <script src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
        <link rel="stylesheet" href="https://m.w3newbie.com/you-tube.css">
        {% load static %}
        <link href="{% static '/css/style.css' %}" rel="stylesheet" type="text/css">
    </head>

    <body>
    {% include "main/includes/home_navbar.html" %}
    {% include "main/includes/image_slider.html" %}
    {% include "main/includes/jumbotron.html" %}
    {% include "main/includes/welcome_section.html" %}
    {% include "main/includes/home_team_section.html" %}
    {% include "main/includes/philosophy.html" %}
    {% include "main/includes/connect.html" %}
    {% include "main/includes/footer.html" %}

      <div class="container">
      <br>
      {% block content %}
      {% endblock %}
      </div>
    </body>

Team.html


    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title></title>
        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
        <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
        <script src="https://use.fontawesome.com/releases/v5.0.8/js/all.js"></script>
        <link rel="stylesheet" href="https://m.w3newbie.com/you-tube.css">
        {% load static %}
        <link href="{% static 'team/css/style.css' %}" rel="stylesheet" type="text/css">
    </head>

    <body>
    {% include "main/includes/home_navbar.html" %}
    {% include "main/includes/image_slider.html" %}
    {% include "main/includes/jumbotron.html" %}
    {% include "main/includes/welcome_section.html" %}
    {% include "main/includes/home_team_section.html" %}
    {% include "main/includes/philosophy.html" %}
    {% include "main/includes/connect.html" %}
    {% include "main/includes/footer.html" %}

      <div class="container">
      <br>
      {% block content %}
      {% endblock %}
      </div>
    </body>

    Style.css

    @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,700');

    html, body {
      height: 100%;
      width: 100%;
      font-family: "Poppins", sans-serif;
      color: #222;
    }

    .navbar {
      padding: .8rem;
    }

    .navbar-nav li{
      padding-right: 20px;
    }

    .nav-link {
      font-size: 1.1em !important
    }

    .carousel-inner img {
      width: 100%;
      height: 100%;
    }

    .carousel-caption {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
    }

    .carousel-caption h1 {
      font-size: 500%
      text-transform: uppercase;
      text-shadow: 1px 1px 15px #000;
    }

    .carousel-caption h3 {
      font-size: 200%
      font-weight: 500;
      text-shadow: 1px 1px 10px #000;
      padding-bottom: 1rem;
    }

    .btn-primary {
      background-color: #FF0000;
      border: 1px solid #FF0000;
    }

    .btn-primary:hover {
      background-color: #8b0000;
      border: 1px solid #8b0000;
    }

    .jumbotron {
      padding: 1rem;
      border-radius: 0;
    }

    .padding {
      padding-bottom: 2rem;
    }

    .welcome {
      width: 75%;
      margin: 0 auto;
      padding-top: 2rem;
    }

    .welcome hr {
      border-top: 2px solid #b4b4b4;
      width: 95%;
      margin-top: .3rem;
      margin-bottom: 1rem;
    }

    .fa-code {
      color: #e54d26;
    }

    .fa-bar-chart {
      color: #563d7c;
    }

    .fa-css3 {
      color: #0000FF;
    }

    .fa-code, .fa-bar-chart, .fa-css3 {
      font-size: 4em;
      margin: 1rem;
    }

    .fun {
      width: 100%;
      margin-bottom: 2rem;
    }

    .gif {
      max-width: 100%;
    }

    .social a {
      font-size: 4.5em;
      padding: 3rem;
    }

    .fa-facebook {
      color: #3b5998;
    }

    .fa-twitter {
      color: #300aced;
    }

    .fa-linkedin {
      color: ##F5F5F5;
    }

    .fa-instagram {
      color: #517fa4;
    }

    .fa-youtube {
      color: #bb0000;
    }

    .fa-facebook:hover, .fa-twitter:hover, .fa-linkedin:hover, .fa-instagram:hover, .fa-youtube:hover {
      color: #d5d5d5;
    }

    footer {
      background-color: #3f3f3f;
      color: #d5d5d5;
      padding-top: 2rem;
    }

    hr.light {
      border-top: 1px solid #d5d5d5;
      width: 75%;
      margin-top: .8rem;
      margin-bottom: 1rem;
    }

    footer a {
      color: #d5d5d5;
    }

    hr.light-100 {
      border-top: 1px solid #d5d5d5;
      width: 100%;
      margin-top: .8rem;
      margin-bottom: 1rem;
    }

    /*---Media Queries --*/
    @media (max-width: 992px) {
      .social a {
        font-size: 4em;
        padding: 2rem;
      }
      }
    @media (max-width: 768px) {
      .carousel-caption {
        top: 45%;
      }
      .carousel-caption h1 {
        font-size: 350%;
      }
      .carousel-caption h3 {
        font-size: 140%;
        font-weight: 400;
        padding-bottom: .2rem;
      }
      .carousel-caption .btn {
        font-size: 95%;
        padding: 8px 14px;
      }
      .display-4 {
        font-size: 200%
      }
      .social a {
        font-size: 2.5em;
        padding: 1.2rem;
      }
    }
    @media (max-width: 576px) {
      .carousel-caption {
        top: 40%;
      }
      .carousel-caption h1 {
        font-size: 250%;
      }
      .carousel-caption h3 {
        font-size: 110%;
      }
      .carousel-caption .btn {
        font-size: 90%;
        padding: 4px 8px;
      }
      .carousel-indicators {
        display: none;
      }
      .display-4 {
        font-size: 160%
      }
      .social a {
        font-size: 2em;
        padding: .7rem;
      }
    }


    /*---Firefox Bug Fix --*/
    .carousel-item {
      transition: -webkit-transform 0.5s ease;
      transition: transform 0.5s ease;
      transition: transform 0.5s ease, -webkit-transform 0.5s ease;
      -webkit-backface-visibility: visible;
      backface-visibility: visible;
    }
    /*--- Fixed Background Image --*/
    figure {
      position: relative;
      width: 100%;
      height: 60%;
      margin: 0!important;
    }
    .fixed-wrap {
      clip: rect(0, auto, auto, 0);
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
    #fixed {
      background-image: url('https://image.freepik.com/free-vector/futuristic-abstract-background-future-theme-concept-background_35136-32.jpg');
      position: fixed;
      display: block;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center center;
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      will-change: transform;
    }
    /*--- Bootstrap Padding Fix --*/
    [class*="col-"] {
        padding: 1rem;
    }





    /*
    Extra small (xs) devices (portrait phones, less than 576px)
    No media query since this is the default in Bootstrap

    Small (sm) devices (landscape phones, 576px and up)
    @media (min-width: 576px) { ... }

    Medium (md) devices (tablets, 768px and up)
    @media (min-width: 768px) { ... }

    Large (lg) devices (desktops, 992px and up)
    @media (min-width: 992px) { ... }

    Extra (xl) large devices (large desktops, 1200px and up)
    @media (min-width: 1200px) { ... }
    */

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...