CoolFace
Apppublic

exbert-project/exbert

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
183likes
base.css159 linesDownload Raw Back to css
1body {2  background-color: white;3  font-family: 'IBM Plex Sans', sans-serif;4  font-weight: 400;5}6 7.sticky {8  position: fixed;9}10 11.noscroll {12  overflow: hidden;13}14 15.vpartial {16  max-height: 90vh;17}18 19.scrolling {20  overflow: auto;21  max-height: 98%;22}23 24.btn .btn-xs {25  padding: .25rem .4rem;26  font-size: .875rem;27  line-height: .5;28  border-radius: .2rem;29}30 31button {32  -webkit-transition-duration: 0.4s;33  /* Safari */34  transition-duration: 0.4s;35  background: transparent;36  padding: 5px;37  border-radius: 5px;38  background-color: lightgray;39}40 41button.selected {42  background-color: #98b7d9;43}44 45button:active :focus {46  background-color: #98b7d9;47}48 49#loader {50  border: 5px solid #f3f3f3;51  border-radius: 50%;52  border-top: 5px solid #3498db;53  width: 100px;54  height: 100px;55  -webkit-animation: spin 2s linear infinite;56  /* Safari */57  animation: spin 2s linear infinite;58  position: absolute;59  left: 50%;60  top: 20%;61  display: none;62}63 64/* Safari */65@-webkit-keyframes spin {66  0% {67    -webkit-transform: rotate(0deg);68  }69  100% {70    -webkit-transform: rotate(360deg);71  }72}73 74@keyframes spin {75  0% {76    -webkit-transform: rotate(0deg);77            transform: rotate(0deg);78  }79  100% {80    -webkit-transform: rotate(360deg);81            transform: rotate(360deg);82  }83}84 85svg {86  vertical-align: top;87}88 89select {90  font-size: 9pt;91  font-weight: 600;92  background-color: transparent;93  padding: 8px 6px;94  -webkit-box-sizing: border-box;95  box-sizing: border-box;96  border-radius: 4px;97  border: 0;98  outline: 0;99}100 101.navbar {102  position: absolute;103  top: 0;104  left: 0;105  width: 100%;106  height: 50px;107  background-color: antiquewhite;108}109 110.navbarContent {111  margin: 10px 20px;112}113 114.navbarContent span {115  padding-left: 10px;116}117 118.navbarContent button {119  margin-left: 10px;120}121 122.navbarTitle {123  font-size: 12pt;124  font-weight: bold;125}126 127.main_frame {128  position: fixed;129  top: 55px;130  overflow-x: hidden;131  overflow-y: auto;132}133 134.floating_content {135  padding: 10px;136  height: 94%;137}138 139.container {140  width: 100%;141  height: 95%;142  text-align: center;143  display: inline-block;144  margin: 5px auto;145}146 147#bottom-margin {148  height: 100px;149}150 151.content {152  max-width: 960px;153  margin: auto;154}155 156.whitespace {157  height: 8vh;158}159/*# sourceMappingURL=base.css.map */