diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-01-09 10:55:03 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-01-09 13:09:38 +0100 |
| commit | 04d6d5ca99ebfd1cebb8ce06618fb3811fc1a8aa (patch) | |
| tree | 5c691241355c943a3c68ddb06b8cf8c60aa11319 /srcs/phpmyadmin/themes/original/scss/_variables.scss | |
| parent | 7e0d85db834d6351ed85d01e5126ac31dc510b86 (diff) | |
| download | ft_server-04d6d5ca99ebfd1cebb8ce06618fb3811fc1a8aa.tar.gz ft_server-04d6d5ca99ebfd1cebb8ce06618fb3811fc1a8aa.tar.bz2 ft_server-04d6d5ca99ebfd1cebb8ce06618fb3811fc1a8aa.zip | |
phpmyadmin working
Diffstat (limited to 'srcs/phpmyadmin/themes/original/scss/_variables.scss')
| -rw-r--r-- | srcs/phpmyadmin/themes/original/scss/_variables.scss | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/srcs/phpmyadmin/themes/original/scss/_variables.scss b/srcs/phpmyadmin/themes/original/scss/_variables.scss new file mode 100644 index 0000000..adaadd8 --- /dev/null +++ b/srcs/phpmyadmin/themes/original/scss/_variables.scss @@ -0,0 +1,60 @@ +// configures general layout for detailed layout configuration please refer to the css files + +// navi frame + +// navi frame width +$navi-width: 240px; + +// foreground (text) color for the navi frame +$navi-color: #000; + +// background for the navi frame +$navi-background: #d0dce0; + +// foreground (text) color of the pointer in navi frame +$navi-pointer-color: #000; + +// background of the pointer in navi frame +$navi-pointer-background: #99c; + +// main frame + +// foreground (text) color for the main frame +$main-color: #000; + +// background for the main frame +$main-background: #f5f5f5; + +// foreground (text) color of the pointer in browse mode +$browse-pointer-color: #000; + +// background of the pointer in browse mode +$browse-pointer-background: #cfc; + +// foreground (text) color of the marker (visually marks row by clicking on it) +// in browse mode +$browse-marker-color: #000; + +// background of the marker (visually marks row by clicking on it) in browse mode +$browse-marker-background: #fc9; + +// fonts + +// the font family as a valid css font family value, if not set the browser default will be +// used (depending on browser, DTD and system settings) +$font-family: sans-serif; +// fixed width font family, used in textarea +$font-family-fixed: monospace; + +// tables + +// border +$border: 0; +// table header and footer color +$th-background: #d3dce3; +// table header and footer background +$th-color: #000; +// table data row background +$bg-one: #e5e5e5; +// table data row background, alternate +$bg-two: #d5d5d5; |
