From 85db7c5287ae58efc108263f7a40bdbd02de1a82 Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Thu, 21 Jul 2022 10:06:02 +0430 Subject: added docs for the db using schemaspy --- dbdocs/bower/salvattore/salvattore.css | 53 ++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 dbdocs/bower/salvattore/salvattore.css (limited to 'dbdocs/bower/salvattore/salvattore.css') diff --git a/dbdocs/bower/salvattore/salvattore.css b/dbdocs/bower/salvattore/salvattore.css new file mode 100644 index 0000000..f037b65 --- /dev/null +++ b/dbdocs/bower/salvattore/salvattore.css @@ -0,0 +1,53 @@ +/* + Spezific styling for salvattore + Feel free to edit it as you like + More info at http://salvattore.com + */ + +/* Base styles */ +.column { + float: left; +} +.size-1of5 { + width: 20%; +} +.size-1of4 { + width: 25%; +} +.size-1of3 { + width: 33.333%; +} +.size-1of2 { + width: 50%; +} + +/* Configurate salvattore with media queries */ +@media screen and (max-width: 450px) { + #grid[data-columns]::before { + content: '1 .column'; + } +} + +@media screen and (min-width: 451px) and (max-width: 700px) { + #grid[data-columns]::before { + content: '2 .column.size-1of2'; + } +} + +@media screen and (min-width: 701px) and (max-width: 850px) { + #grid[data-columns]::before { + content: '3 .column.size-1of3'; + } +} + +@media screen and (min-width: 851px) and (max-width: 1600px) { + #grid[data-columns]::before { + content: '4 .column.size-1of4'; + } +} + +@media screen and (min-width: 1601px) { + #grid[data-columns]::before { + content: '5 .column.size-1of5'; + } +} \ No newline at end of file -- cgit v1.2.3