diff options
Diffstat (limited to 'utab/data/css')
-rw-r--r-- | utab/data/css/index.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/utab/data/css/index.css b/utab/data/css/index.css new file mode 100644 index 0000000..5f03851 --- /dev/null +++ b/utab/data/css/index.css @@ -0,0 +1,32 @@ +body { + text-align: center; + background-color: #222; + color: white; + font-family: sans-serif; +} + +.sites-grid { + position: relative; + left: 10%; + max-width: 80%; + max-height: 80%; +} + +.sites-item { + border: #888 2px solid; + display: inline-block; + margin: 20px; + width: 80px; + height: 80px; +} + +.sites-item:hover { + border: #ccc 2px solid; +} + +.site-favicon { + width: 64px; + height: 64px; + position: relative; + top: 8px; +} |