1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- /* шапка сайта: */
- .navbar{
-
- width: 100%;
- height: 7%;
- /*box-shadow - отвечает за тень.
- с параметрами:
- 0- смещение по х,
- 4рх- смещение по у,
- 10рх - размытость
- rgba - цвет тени, в палитре rgb, последний параметр отвечает за размытие*/
- box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
- }
- .navbar-brand{
- height: 70px;
- margin: 10px 0px 10px 40px;
- }
- .navbar .container{
- height: inherit; /*высота зависит от родителя, то есть от navbar*/
- display: flex;
- justify-content: space-between;
- }
- .navbar-menu{
- list-style-type: none;
- padding-left: 0;
- margin-bottom: 0;
- }
- .navbar-menu li{
- display: inline-block;
- margin-right: 10px;
- font-size: 30px;
- font-family: "Advent Pro", sans-serif;
- font-optical-sizing: auto;
- font-weight: bold;
- }
- .navbar-menu li a{
- display: inline-block;
- color: black;
- opacity: 0.5;
- text-decoration: none;
-
- padding: 0px 10px;
- transition: all .074s ease-in-out;
- /* свойство при наведении,выше */
- }
- .navbar-menu li a:hover{
- opacity: 1;
- }
- .navbar-wrap{
- display: flex;
- flex-flow: row nowrap;
- align-items: center;
- }
- .login{
- font-size: 24px;
- font-family: "Advent Pro", sans-serif;
- font-optical-sizing: auto;
- font-weight: bold;
-
- margin-right: 30px;
- margin-left: 30px;
- padding: 7px 30px;
- background-color:rgb(255, 170, 30);
- border-radius: 5px;
- color: black;
- transition: box-shadow .074s ease, tansform .074s ease;
- }
- .login:hover{
- box-shadow: 0 0 15px 5px rgba(255, 170, 30, 0.3);
- transform: scale(1.04);
- }
|