/
githubmirror
/
alluxio
Обзор
Документация
Войти
/
githubmirror
/
alluxio
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
webui/common/src/components/Header/Header.scss
76 строк
2 KB
Bin Fan
Rename module alluxio-ui to webui for consistency
11 май 2019, 00:17
11 май 2019, 00:17
671b0ec
Код
Авторство
О чём код?
/* * The Alluxio Open Foundation licenses this work under the Apache License, version 2.0 * (the "License"). You may not use this work except in compliance with the License, which is * available at www.apache.org/licenses/LICENSE-2.0 * * This software is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied, as more fully set forth in the License. * * See the NOTICE file distributed with this work for information regarding copyright ownership. */ @import '../../constants/scss/themeVariables'; .header { .navbar { padding: 0; .navbar-brand { padding: 0; .headerLogo { .brand { font-size: 1.125rem; padding: 0.25em; .brandImage { @media only screen { img.brandSpin { height: 1.75em; width: 1.75em; -webkit-animation: brandSpin 20s ease-in-out infinite; -moz-animation: brandSpin 20s ease-in-out infinite; animation: brandSpin 20s ease-in-out infinite; } } } .brandName { color: #fafafa; font-weight: 600; letter-spacing: 0.05em; transform: scaleY(0.8); image-rendering: crisp-edges; } } @keyframes brandSpin { 0%, 90% { transform: rotateY(0deg); } 95% { transform: rotateY(90deg); } 100% { transform: rotateY(0deg); } } } } .tabs { .nav-tabs { border: 0; .nav-link { padding: 0.25em 0.5em; &.active { background-color: $body-bg; border-color: transparent; } } } } } }