Сайт Lo go накладывается на заголовок сайта - PullRequest
0 голосов
/ 27 февраля 2020

Я хочу отделить веб-сайт lo go от заголовка веб-сайта

Так выглядит изображение, когда я открываю его с помощью версии для настольных ПК в мобильном телефоне

Когда я открываю с обычно в мобильном телефоне. Заголовок веб-сайта и lo go перекрываются !!!

Изображение мобильной версии перекрывается

Заголовок. html страница выглядит следующим образом этот

    <!-- header 
   ================================================== -->
   <header class="short-header">   

    <div class="gradient-block"></div>  

    <div class="row header-content">
    <h1 align="center">  BRCB- Biology Resources for Curious Biologists</h1>
        <div class="logo"> 

             <a href="index.html">Author</a>

          </div>

CSS файл очень большой, поэтому, пожалуйста, посетите эту ссылку на github

несколько строк CSS страницы

/* ===================================================================
 *  09. header styles - (_layout.scss)
 *
 * ------------------------------------------------------------------- */
header {
    width: 100%;
    background: #DBDBDB url(../images/escheresque_@2X.png) repeat;
    background-size: 46px 29px;
    height: 130px;
    border-bottom: 1px solid #E5E5E5;
}
header .header-content {
    height: auto;
    max-width: 1290px;
    position: relative;
    top: 24px;
    left: 0;
    right: 0;
    width: 100%;
}
header a {
    border: none;
}

@media only screen and (max-width:400px) {
    header {
        height: 118px;
    }

}

/* ------------------------------------------------------------------- 
 * header logo - (_layout.css) 
 * ------------------------------------------------------------------- */
header .logo {
    position: absolute;
    left: 35px;
    top: 6px;
    z-index: 601;
}

header .logo a {
    display: block;
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    width: 60px;
    height: 60px;
    background: url("../images/logo.png") no-repeat center;
    background-size: 60px 60px;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

/* responsive:
 * header logo
 * ------------------------------------------------------------------- */
@media only screen and (max-width:768px) {
    header .logo {
        left: 45px;
    }

}

@media only screen and (max-width:600px) {
    header .logo {
        left: 35px;
    }

}

@media only screen and (max-width:400px) {
    header .logo {
        left: 25px;
    }

    header .logo a {
        width: 54px;
        height: 54px;
        background-size: 54px 54px;
    }

}

/* ------------------------------------------------------------------- 
 * navigation - (_layout.css) 
 * ------------------------------------------------------------------- */
.triggers {
    position: absolute;
    right: 35px;
    top: 18px;
}

.triggers .search-trigger {
    display: inline-block;
    font-size: 17px;
    color: #000000;
}

.triggers .menu-toggle {
    display: none;
}

/* responsive:
 * triggers
 * ------------------------------------------------------------------- */
@media only screen and (max-width:768px) {
    .triggers {
        right: 40px;
        top: 12px;
    }

}

@media only screen and (max-width:600px) {
    .triggers {
        right: 30px;
    }

}

@media only screen and (max-width:400px) {
    .triggers {
        right: 20px;
    }

}

Index. html

header. html

Q1.Я хочу оба используйте больший шрифт для BRCB и меньший шрифт для Биологических ресурсов для любознательных биологов

Q2. Lo go не должно совпадать с текстом

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