diff options
author | Ciaran Gallagher <[email protected]> | 2019-12-02 21:05:04 +0000 |
---|---|---|
committer | Ciaran Gallagher <[email protected]> | 2019-12-02 21:05:04 +0000 |
commit | 50747e470e7965da605a9ac5a1470c780c657712 (patch) | |
tree | 8dc968272e2bb5da9931c49912fb6a5c7996d8d6 /css | |
parent | 74c15fa7a348af4bf01999911acf9fefcedb7598 (diff) | |
download | pasta-50747e470e7965da605a9ac5a1470c780c657712.tar.gz pasta-50747e470e7965da605a9ac5a1470c780c657712.zip |
Mobile Formatting and remove UIDs from tables
Diffstat (limited to 'css')
-rw-r--r-- | css/main.css | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/css/main.css b/css/main.css index b3f098e..5e924e1 100644 --- a/css/main.css +++ b/css/main.css @@ -23,8 +23,10 @@ small { color: rgb(190,190,190); } -nav h3 small.text-muted { +nav small { color: rgb(190,190,190); + font-size: 0.7em; + font-variant: small-caps; } a { @@ -300,4 +302,39 @@ table, td, tr, th { #subtitleTable tbody tr.success-transition { color: #fff; animation: successFadeOut 1.5s ease-out; +} + +/*========================== + MEDIA QUERIES +==========================*/ + +/* Extra small devices (phones, 600px and down) */ +@media only screen and (max-width: 600px) { + nav small { + display: none; + } + + .navbar .container { + justify-content: center; + } +} + +/* Small devices (portrait tablets and large phones, 600px and up) */ +@media only screen and (min-width: 600px) { + +} + +/* Medium devices (landscape tablets, 768px and up) */ +@media only screen and (min-width: 768px) { + +} + +/* Large devices (laptops/desktops, 992px and up) */ +@media only screen and (min-width: 992px) { + +} + +/* Extra large devices (large laptops and desktops, 1200px and up) */ +@media only screen and (min-width: 1200px) { + }
\ No newline at end of file |