diff options
Diffstat (limited to 'packages/website/less/all.less')
-rw-r--r-- | packages/website/less/all.less | 146 |
1 files changed, 0 insertions, 146 deletions
diff --git a/packages/website/less/all.less b/packages/website/less/all.less deleted file mode 100644 index 5d1dccc98..000000000 --- a/packages/website/less/all.less +++ /dev/null @@ -1,146 +0,0 @@ -body { - font-family: 'Roboto'; -} - -a { - color: black; -} - -#faq { - li { - padding-bottom: 5px; - } - - a { - color: rgb(66, 66, 66); - } -} - -#landing { - .h1, - .h2, - .h3, - .h4 { - font-family: 'Roboto Mono'; - } -} - -#portal { - h1, - h2, - h3, - h4 { - font-weight: 100; - } -} - -#scroll_container { - .typeTooltip { - border: 1px solid lightgray; - opacity: 1; - } -} - -/* - * Adds always visible scrollbars on OSX so that user knows the content is scrollable - * Source: https://davidwalsh.name/osx-overflow - */ -::-webkit-scrollbar { - -webkit-appearance: none; - width: 4px; - height: 2px; -} -::-webkit-scrollbar-thumb { - border-radius: 4px; - background-color: rgba(0, 0, 0, 0.5); - -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5); -} - -// Hack: For some reason the animation applied to the material-ui textfield causes the overflow -// applied to other elements to fail while the animation is underway. Adding this class to the -// affected component fixes the issue -// Source: http://stackoverflow.com/questions/14383632/webkit-border-radius-and-overflow-bug-when-using-any-animation-transition -.transitionFix { - -webkit-backface-visibility: hidden; - -moz-backface-visibility: hidden; - -webkit-transform: translate3d(0, 0, 0); - -moz-transform: translate3d(0, 0, 0); -} - -.thin { - font-weight: 100; -} - -code { - border: 1px solid #e3eefe; - border-radius: 4px; - font-family: 'Roboto Mono'; - //background-color: #f2f6ff !important; // lightBlue -} - -#wiki { - p { - color: #515151; // grey750 - fontsize: 15; - } - - a { - color: #1d5cde; // linkBlue - } - - h1, - h2, - h3, - h4 { - padding-top: 15px; - } - - p, - blockquote, - ol, - dl, - li, - table, - pre { - margin: 15px 0; - } - - li { - margin: 5px 0; - } - - table { - padding: 0; - border-collapse: collapse; - } - table tr { - border-top: 1px solid #cccccc; - background-color: white; - margin: 0; - padding: 0; - } - table tr:nth-child(2n) { - background-color: #f8f8f8; - } - table tr th { - font-weight: bold; - border: 1px solid #cccccc; - text-align: left; - margin: 0; - padding: 6px 13px; - } - table tr td { - border: 1px solid #cccccc; - text-align: left; - margin: 0; - padding: 6px 13px; - } - table tr th :first-child, - table tr td :first-child { - margin-top: 0; - } - table tr th :last-child, - table tr td :last-child { - margin-bottom: 0; - } -} |