diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-05-04 13:24:28 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-05-04 13:24:28 -0400 |
commit | d9338ec24bc896b11863c08eaf051f3eaa24c554 (patch) | |
tree | 34dbec0ad1fc79c9b6bd3bd29dab0b72665e996f /css/website.css | |
parent | a4e5b0adb5f044bd8ef81bdcd427dfae64e1b9cb (diff) | |
download | grav-sowtheme-d9338ec24bc896b11863c08eaf051f3eaa24c554.tar.gz grav-sowtheme-d9338ec24bc896b11863c08eaf051f3eaa24c554.tar.bz2 grav-sowtheme-d9338ec24bc896b11863c08eaf051f3eaa24c554.zip |
Add table style
Diffstat (limited to 'css/website.css')
-rw-r--r-- | css/website.css | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/css/website.css b/css/website.css index 2274584..6ff0919 100644 --- a/css/website.css +++ b/css/website.css @@ -1,4 +1,4 @@ -/* text styleing */ +/* text styling */ img { max-width: 100%; } @@ -48,6 +48,23 @@ li { padding: 2px 0px; } +/* Table */ +table { + border-collapse: collapse; +} + +tr { + border-bottom: 1px solid rgb(50, 50, 50); +} + +thead { + text-align: left; +} + +td { + padding-right: 100px; +} + /* icon */ @font-face { font-family: 'Material Symbols Rounded'; |