diff options
| author | Bobby <[email protected]> | 2024-12-15 01:32:50 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2024-12-15 01:32:50 -0500 |
| commit | 2efc3e9fbb38e447c5e336dfea679644ea16af12 (patch) | |
| tree | a3419ab1a95e79fec6d063f7ca3d554e881c5b1d /static/css/core | |
| parent | bfb48d61602388a063a93782c541d721aeca7545 (diff) | |
| download | thatcomputerscientist-2efc3e9fbb38e447c5e336dfea679644ea16af12.tar.xz thatcomputerscientist-2efc3e9fbb38e447c5e336dfea679644ea16af12.zip | |
more items. homepage stuff
Diffstat (limited to 'static/css/core')
| -rw-r--r-- | static/css/core/home.css | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/static/css/core/home.css b/static/css/core/home.css new file mode 100644 index 00000000..79df5690 --- /dev/null +++ b/static/css/core/home.css @@ -0,0 +1,108 @@ +#welcome { + width: 780px; + min-height: 280px; + background: url('../../images/core/backgrounds/welcome-banner.png') no-repeat; + background-size: 780px 280px; + margin: 15px auto; + border: 0px; + position: relative; + text-align: justify; + border-radius: 8px; +} + +#welcome>p { + width: 410px; + margin: 12px 0px 12px 48px; + position: relative; + top: 20px; + text-align: justify; +} + +#chatbox { + position: absolute; + right: 116px; + width: 172px; + top: 24px; +} + +#messages { + height: 176px; + overflow-y: scroll; + position: relative; + -ms-overflow-style: none; + scrollbar-width: none; +} + +#messages::-webkit-scrollbar { + display: none; +} + +.message { + text-align: left; +} + +#chatbox-input { + width: 168px; + border: none; + margin-top: 4px; + padding: 4px 2px 2px 2px; + resize: none; + border-top: solid 1px rgba(222, 222, 222, 0.7); + border-radius: 0; + height: 64px; +} + +#uc { + width: 780px; +} + +/* +#announcements { + background: url('../images/backgrounds/announcements.png') no-repeat; + background-size: 730px 300px; + position: relative; + margin-top: 15px; + width: 730px; + height: 300px; +} + +#update-gif { + height: 14px; + display: block; + position: relative; + left: 118px; + top: 11px; +} + +marquee { + border: 15px solid transparent; + padding: 15px; + border-image: url('../images/backgrounds/announcements_border.png') 45 round; + width: 480px; + height: 180px; + position: relative; + left: 120px; + top: 23px; + background-color: rgba(0, 0, 0, 0.2); +} + +marquee::after { + position: absolute; + top: -4px; + bottom: -4px; + left: -4px; + right: -4px; + content: ''; + z-index: -1; + border-radius: 16px; +} + +marquee>ul { + text-align: justify; +} + + + +#adfs { + width: 720px; +} */
\ No newline at end of file |
