diff options
| author | UltraQbik <no1skill@yandex.ru> | 2024-08-19 23:31:36 +0300 |
|---|---|---|
| committer | UltraQbik <no1skill@yandex.ru> | 2024-08-19 23:31:36 +0300 |
| commit | b860eb988c0d9fa977b4075ff42e6093b1e52809 (patch) | |
| tree | 31392f61ae503afb3013521d29f38a19dda027ba /css/styles.css | |
| parent | d770c270eb035d3757deff83898f08ffc332b66b (diff) | |
| download | httpy-b860eb988c0d9fa977b4075ff42e6093b1e52809.tar.gz httpy-b860eb988c0d9fa977b4075ff42e6093b1e52809.zip | |
initial
Diffstat (limited to 'css/styles.css')
| -rw-r--r-- | css/styles.css | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/css/styles.css b/css/styles.css new file mode 100644 index 0000000..887a8c7 --- /dev/null +++ b/css/styles.css @@ -0,0 +1,46 @@ +* { + margin: 0; + padding: 0; + background: transparent; +} + +body { + font-family: Arial, Helvetica, sans-serif; + color: white; + background: black; + display: flex; + flex-direction: column; + min-height: 100vh; +} + +header { + background: #202020; + padding: 30px; + text-align: center; + font-size: 30px; +} + +#cool-div { + align-self: center; + width: 50vw; +} + +section { + padding: 20px 10px 10px; + font-size: 20px; +} + +footer { + background: #202020; + padding: 25px; + text-align: center; + font-size: 10px; + margin-top: auto; +} + +#cool-butt { + background: white; + padding: 5px; + width: 100%; + font-size: 30px; +} |