main
|
Last change
on this file since fc8a8b1 was 40ac7a9, checked in by Mihail <mihail2.naumov@…>, 7 months ago |
|
Added frontend elements
|
-
Property mode
set to
100644
|
|
File size:
2.0 KB
|
| Line | |
|---|
| 1 | html, body {
|
|---|
| 2 | margin: 0;
|
|---|
| 3 | padding: 0;
|
|---|
| 4 | overflow-x: hidden;
|
|---|
| 5 |
|
|---|
| 6 | }
|
|---|
| 7 |
|
|---|
| 8 | body {
|
|---|
| 9 | background: #262636;
|
|---|
| 10 | }
|
|---|
| 11 |
|
|---|
| 12 | #app-shell {
|
|---|
| 13 | min-height: 100vh;
|
|---|
| 14 | display: flex;
|
|---|
| 15 | flex-direction: column;
|
|---|
| 16 | }
|
|---|
| 17 |
|
|---|
| 18 | #page-content {
|
|---|
| 19 | flex: 1;
|
|---|
| 20 | padding: 32px 20px;
|
|---|
| 21 | max-width: 1000px;
|
|---|
| 22 | width: 100%;
|
|---|
| 23 | margin: 0 auto;
|
|---|
| 24 | }
|
|---|
| 25 |
|
|---|
| 26 | .navbar {
|
|---|
| 27 | background: black;
|
|---|
| 28 | color: white;
|
|---|
| 29 | }
|
|---|
| 30 |
|
|---|
| 31 | .navbar__logo{
|
|---|
| 32 | height: 32px;
|
|---|
| 33 | width: auto;
|
|---|
| 34 | margin-right: 5px;
|
|---|
| 35 | }
|
|---|
| 36 |
|
|---|
| 37 | .navbar a {
|
|---|
| 38 | color: white;
|
|---|
| 39 | text-decoration: none;
|
|---|
| 40 | }
|
|---|
| 41 |
|
|---|
| 42 | .navbar__inner {
|
|---|
| 43 | width: 100%;
|
|---|
| 44 | margin: 0 auto;
|
|---|
| 45 | padding: 5px 15px;
|
|---|
| 46 | display: flex;
|
|---|
| 47 | flex-direction: column;
|
|---|
| 48 | gap: 10px;
|
|---|
| 49 | }
|
|---|
| 50 |
|
|---|
| 51 | .navbar__top {
|
|---|
| 52 | display: flex;
|
|---|
| 53 | align-items: center;
|
|---|
| 54 | justify-content: space-between;
|
|---|
| 55 | gap: 15px;
|
|---|
| 56 | min-width: 0;
|
|---|
| 57 | }
|
|---|
| 58 |
|
|---|
| 59 | .navbar__bottom {
|
|---|
| 60 | display: flex;
|
|---|
| 61 | align-items: center;
|
|---|
| 62 | justify-content: space-between;
|
|---|
| 63 | gap: 16px;
|
|---|
| 64 | min-width: 0;
|
|---|
| 65 | }
|
|---|
| 66 |
|
|---|
| 67 | .navbar__brand {
|
|---|
| 68 | font-size: 25px;
|
|---|
| 69 | font-weight: 700;
|
|---|
| 70 | }
|
|---|
| 71 |
|
|---|
| 72 | .navbar__auth {
|
|---|
| 73 | display: flex;
|
|---|
| 74 | align-items: center;
|
|---|
| 75 | gap: 10px;
|
|---|
| 76 | font-size: 18px;
|
|---|
| 77 | opacity: 0.95;
|
|---|
| 78 | margin-right: 30px;
|
|---|
| 79 | }
|
|---|
| 80 |
|
|---|
| 81 | .navbar__sep {
|
|---|
| 82 | opacity: 0.5;
|
|---|
| 83 | }
|
|---|
| 84 |
|
|---|
| 85 | .navbar__links {
|
|---|
| 86 | display: flex;
|
|---|
| 87 | flex-wrap: wrap;
|
|---|
| 88 | gap: 20px;
|
|---|
| 89 | font-size: 18px;
|
|---|
| 90 | }
|
|---|
| 91 |
|
|---|
| 92 | .navbar__links a {
|
|---|
| 93 | padding: 6px 8px;
|
|---|
| 94 | border-radius: 8px;
|
|---|
| 95 | }
|
|---|
| 96 |
|
|---|
| 97 | .navbar__links a:hover,
|
|---|
| 98 | .navbar__auth a:hover {
|
|---|
| 99 | background: rgba(255, 255, 255, 0.18);
|
|---|
| 100 | color: #ff8201;
|
|---|
| 101 | }
|
|---|
| 102 |
|
|---|
| 103 | .navbar__search input {
|
|---|
| 104 | width: 220px;
|
|---|
| 105 | max-width: 45vw;
|
|---|
| 106 | padding: 8px 10px;
|
|---|
| 107 | border-radius: 10px;
|
|---|
| 108 | border: 1px solid rgba(255, 255, 255, 0.15);
|
|---|
| 109 | background: rgba(255, 255, 255, 0.06);
|
|---|
| 110 | color: #eaeaea;
|
|---|
| 111 | outline: none;
|
|---|
| 112 | margin-right: 30px;
|
|---|
| 113 | min-width: 0;
|
|---|
| 114 |
|
|---|
| 115 | }
|
|---|
| 116 |
|
|---|
| 117 | .navbar__search input::placeholder {
|
|---|
| 118 | color: rgba(234, 234, 234, 0.6);
|
|---|
| 119 | }
|
|---|
| 120 |
|
|---|
| 121 | .footer {
|
|---|
| 122 | border-top: 1px solid rgba(255, 255, 255, 0.08);
|
|---|
| 123 | background: black;
|
|---|
| 124 | color: gray;
|
|---|
| 125 | }
|
|---|
| 126 |
|
|---|
| 127 | .footer__inner {
|
|---|
| 128 | width: 100%;
|
|---|
| 129 | margin: 0 auto;
|
|---|
| 130 | padding: 18px 20px;
|
|---|
| 131 | font-size: 14px;
|
|---|
| 132 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.