diff options
| author | 0xNul <57599792+0xNul@users.noreply.github.com> | 2023-07-16 16:07:09 -0700 |
|---|---|---|
| committer | 0xNul <57599792+0xNul@users.noreply.github.com> | 2023-07-22 07:50:36 -0700 |
| commit | f59aed740321e9423055de259540fdf2bf3f6ed9 (patch) | |
| tree | 1d9cf44acf7da79c06c5a9d21785cb436dd16013 /resources/css | |
| parent | 9d442c28344b8591f4f2ea54f693b23b244a93b8 (diff) | |
generate first page of model index view
Diffstat (limited to 'resources/css')
| -rw-r--r-- | resources/css/style.css | 44 |
1 files changed, 41 insertions, 3 deletions
diff --git a/resources/css/style.css b/resources/css/style.css index 06beac1..5d08231 100644 --- a/resources/css/style.css +++ b/resources/css/style.css @@ -28,8 +28,9 @@ stats { } content { - height: 573px; - display: block; + display: flex; + align-items: stretch; + min-height: 573px; margin-left: 50px; margin-right: 50px; border-left: solid; @@ -42,7 +43,7 @@ content { #column-1, #column-2 { float: left; padding-top: 25px; - height: 550px; + margin-bottom: 50px; } #column-1 { @@ -54,6 +55,11 @@ content { width: 442px; } +#column-2 p { + margin-top: 2px; + margin-bottom: 2px; +} + .weapons { width: 737px; } @@ -136,6 +142,7 @@ stats td { width: 47px; height: 47px; font-size: 24px; + font-weight: bold; margin-left: 8px; border: solid; border-color: #3c4b3f; @@ -189,3 +196,34 @@ stats td { border: 2px solid #3c4b3f; transform: rotate(45deg); } + +.shield-container { + width: 55px; + height: 60px; + position: relative; + left: 365px; + bottom: 100px; + text-align: center; + font-size: 24px; + font-weight: bold; + color: #3c4b3f; + margin-bottom: -70px; +} + +.shield-text { + position: relative; + top: 43px; + left: 4px; + z-index: 100; +} + +.shield { + position: relative; + width: 100%; + height: 90%; + background-color: #e1e0e1; + border: 3px solid #3c4b3f; + border-radius: 0 0 70% 70%; + display: inline-block; + overflow: hidden; +} |