123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- @font-face {
- font-family: 'Material Icons';
- font-style: normal;
- font-weight: 400;
- src: url(/fonts/MaterialIcons-Regular.ttf); /* For IE6-8 */
- src: local('Material Icons'),
- local('MaterialIcons-Regular'),
- url(/fonts/MaterialIcons-Regular.ttf) format('truetype');
- }
- .material-icons {
- font-family: 'Material Icons';
- font-weight: normal;
- font-style: normal;
- font-size: 24px; /* Preferred icon size */
- display: inline-block;
- line-height: 1;
- text-transform: none;
- letter-spacing: normal;
- word-wrap: normal;
- white-space: nowrap;
- direction: ltr;
-
- /* Support for all WebKit browsers. */
- -webkit-font-smoothing: antialiased;
- /* Support for Safari and Chrome. */
- text-rendering: optimizeLegibility;
-
- /* Support for Firefox. */
- -moz-osx-font-smoothing: grayscale;
-
- /* Support for IE. */
- font-feature-settings: 'liga';
- }
- html {
- background-color: inherit;
- }
- body {
- /* background-color: rgb(245, 245, 245); */
- background-color: rgb(249 249 249);
- }
- .app {
- min-height: 100vh;
- position: relative;
- }
- .content-wrapper {
- padding: 60px 0 calc(230px + 60px) 0;
- }
- .card {
- background-color: white;
- /*padding: 20px;*/
- }
- .toast {
- z-index: 10000 !important;
- }
- ul {
- list-style: none;
- margin: 0;
- display: block;
- }
- h1, h2, h3, h4, h5, h6 {
- font-weight: 400;
- line-height: 1.1;
- }
- h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
- font-weight: inherit;
- }
- h1 {
- font-size: 4.2rem;
- line-height: 110%;
- margin: 2.1rem 0 1.68rem 0;
- }
- h2 {
- font-size: 3.56rem;
- line-height: 110%;
- margin: 1.78rem 0 1.424rem 0;
- }
- h3 {
- font-size: 2.92rem;
- line-height: 110%;
- margin: 1.46rem 0 1.168rem 0;
- }
- h4 {
- font-size: 2.28rem;
- line-height: 110%;
- margin: 1.14rem 0 0.912rem 0;
- }
- h5 {
- font-size: 1.64rem;
- line-height: 110%;
- margin: 0.82rem 0 0.656rem 0;
- }
- h6 {
- font-size: 1rem;
- line-height: 110%;
- margin: 0.5rem 0 0.4rem 0;
- }
- .thin {
- font-weight: 200;
- }
- .left {
- float: left !important;
- }
- .right {
- float: right !important;
- }
- .light-blue {
- background-color: #ff4545 !important;
- }
- .white {
- background-color: #FFFFFF !important;
- }
- .btn-search {
- font-size: 14px;
- }
- a.nav-item.is-tab {
- border-bottom: 1px solid transparent;
- border-top: 1px solid transparent;
- }
- .button.is-info {
- background-color: #ff4545;
- border-width: 0;
- color: #fff;
- }
- strong {
- color: inherit;
- }
|