diff options
| author | physcik <mynameisgennadiy@vk.com> | 2026-04-11 01:55:54 +0500 |
|---|---|---|
| committer | physcik <mynameisgennadiy@vk.com> | 2026-04-11 01:55:54 +0500 |
| commit | ae614c0d1174d3b5527f1fb3dc6e339d7ad6a10b (patch) | |
| tree | 95ced0cbe0c7ed8b66bc30440b75c05429cac6dd /front/src/Emelents/Elements.css | |
| parent | e243f101b3266ed98a1b668562a639408ffe36d7 (diff) | |
CSS pt 1
Diffstat (limited to 'front/src/Emelents/Elements.css')
| -rw-r--r-- | front/src/Emelents/Elements.css | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/front/src/Emelents/Elements.css b/front/src/Emelents/Elements.css new file mode 100644 index 0000000..8a50296 --- /dev/null +++ b/front/src/Emelents/Elements.css @@ -0,0 +1,56 @@ +.Sidebar { + --width: 300px; + height: 100%; + min-width: var(--width); + max-width: var(--width); + min-height: 1000px; + background-color: var(--colorscheme-white); + border: 2px solid var(--colorscheme-gray); + color: var(--colorscheme-gray); + + + background: var(--colorscheme-white); + background-image: radial-gradient(var(--colorscheme-gray) 1px, transparent 0); + background-size: 4px 4px; +} + +.Topbar { + text-transform: uppercase; + display: flex; + flex-direction: column; +} + +.Topbar > h1 { + margin-bottom: 0px; +} + +.TopbarContents { + border-top: 2px solid var(--colorscheme-black); + display: flex; +} + +.TopbarContents > h2 { + --width: 280px; + min-width: var(--width); + max-width: var(--width); + min-height: 30px; + padding: 5px; + margin-top: 0px; + background-color: var(--colorscheme-black); + color: var(--colorscheme-white); + text-align: center; +} + +.SidebarContents { + --width: 260px; + min-width: var(--width); + max-width: var(--width); + background-color: var(--colorscheme-white); + color: var(--colorscheme-gray); + margin: 20px; +} + +.SidebarContents > h1 { + color: var(--colorscheme-gray); + text-align: center; +} |
