LeagueStats/client/src/assets/css/base.css

48 lines
695 B
CSS
Raw Normal View History

2019-04-16 12:28:42 +00:00
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900');
2019-10-13 13:51:47 +00:00
::-webkit-scrollbar {
width: 8px;
height: 8px
}
::-webkit-scrollbar,
::-webkit-scrollbar-track {
background: rgba(23, 49, 79, .6);
}
::-webkit-scrollbar-thumb {
background-color: rgba(194, 217, 254, .6);
border-radius: 8px
}
.min-w-1200 {
min-width: 1200px;;
}
.page-wrapper {
width: 1200px;
}
button:focus {
outline: 0;
2019-04-16 12:28:42 +00:00
}
.vertical-center {
top: 50%;
transform: translateY(-50%);
2019-04-16 12:28:42 +00:00
}
.horizontal-center {
left: 0;
right: 0;
margin: 0 auto;
2019-04-16 12:28:42 +00:00
}
.bg-gradient {
background: linear-gradient(180deg, #2C5282 0%, rgba(44, 82, 130, 0) 100%);
}
.text-overflow {
text-overflow: ellipsis;
}