Last change
on this file was d7b7f00, checked in by Gorazd Biskoski <gorazdbiskoskii@…>, 4 weeks ago |
Add project
|
-
Property mode
set to
100644
|
File size:
1.9 KB
|
Rev | Line | |
---|
[d7b7f00] | 1 | .parent{
|
---|
| 2 | padding: 6px;
|
---|
| 3 | }
|
---|
| 4 | .parentContainer {
|
---|
| 5 | display: flex;
|
---|
| 6 | justify-content: center;
|
---|
| 7 | align-items: center;
|
---|
| 8 | height: 100vh;
|
---|
| 9 | background-color: #f0f0f0;
|
---|
| 10 | }
|
---|
| 11 |
|
---|
| 12 | .settingsContainer {
|
---|
| 13 | border-radius: 20px;
|
---|
| 14 | display: flex;
|
---|
| 15 | flex-direction: column;
|
---|
| 16 | width: 100%;
|
---|
| 17 | max-width: 1200px;
|
---|
| 18 | margin: 0 auto;
|
---|
| 19 | background-color: #fff;
|
---|
| 20 | box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1), 10px 0 10px rgba(0, 0, 0, 0.1);
|
---|
| 21 | overflow: hidden;
|
---|
| 22 | height: 100%;
|
---|
| 23 | max-height: 900px;
|
---|
| 24 | justify-content: center;
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | .header {
|
---|
| 28 | display: flex;
|
---|
| 29 | align-items: center;
|
---|
| 30 | padding: 0 20px;
|
---|
| 31 | border-bottom: 1px solid #e0e0e0;
|
---|
| 32 | width: 100%;
|
---|
| 33 | }
|
---|
| 34 |
|
---|
| 35 | .settingsWrapper {
|
---|
| 36 | padding: 20px;
|
---|
| 37 | width: 200px;
|
---|
| 38 | border-right: 1px solid #e0e0e0;
|
---|
| 39 | }
|
---|
| 40 |
|
---|
| 41 | .contentWrapper {
|
---|
| 42 | display: flex;
|
---|
| 43 | gap: 20px;
|
---|
| 44 | flex-grow: 1;
|
---|
| 45 | }
|
---|
| 46 |
|
---|
| 47 | .mainContent {
|
---|
| 48 | height: 85vh;
|
---|
| 49 | flex: 1;
|
---|
| 50 | padding: 20px;
|
---|
| 51 | overflow-y: auto;
|
---|
| 52 | }
|
---|
| 53 |
|
---|
| 54 | .header h2 {
|
---|
| 55 | margin: 0;
|
---|
| 56 | font-size: 20px;
|
---|
| 57 | color: #333;
|
---|
| 58 | flex: 1;
|
---|
| 59 | display: flex;
|
---|
| 60 | justify-content: space-between;
|
---|
| 61 | align-items: center;
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | .backArrow {
|
---|
| 65 | cursor: pointer;
|
---|
| 66 | margin-right: 15px;
|
---|
| 67 | display: flex;
|
---|
| 68 | align-items: center;
|
---|
| 69 | font-size: 1.5rem;
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | .settingsWrapper {
|
---|
| 73 | flex-grow: 1;
|
---|
| 74 | text-align: center;
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | @media (max-width: 768px) {
|
---|
| 78 | .settingsContainer {
|
---|
| 79 | max-width: 100%;
|
---|
| 80 | max-height: none;
|
---|
| 81 | height: auto;
|
---|
| 82 | padding: 10px;
|
---|
| 83 | box-shadow: none;
|
---|
| 84 | }
|
---|
| 85 |
|
---|
| 86 | .header {
|
---|
| 87 | flex-direction: column;
|
---|
| 88 | padding: 15px;
|
---|
| 89 | text-align: center;
|
---|
| 90 | }
|
---|
| 91 |
|
---|
| 92 | .settingsWrapper {
|
---|
| 93 | width: 100%;
|
---|
| 94 | border-right: none;
|
---|
| 95 | border-bottom: 1px solid #e0e0e0;
|
---|
| 96 | padding: 10px;
|
---|
| 97 | }
|
---|
| 98 |
|
---|
| 99 | .contentWrapper {
|
---|
| 100 | flex-direction: column;
|
---|
| 101 | gap: 15px;
|
---|
| 102 | padding: 10px;
|
---|
| 103 | }
|
---|
| 104 |
|
---|
| 105 | .mainContent {
|
---|
| 106 | padding: 10px;
|
---|
| 107 | }
|
---|
| 108 |
|
---|
| 109 | .backArrow {
|
---|
| 110 | margin-right: 0;
|
---|
| 111 | justify-content: center;
|
---|
| 112 | }
|
---|
| 113 | } |
---|
Note:
See
TracBrowser
for help on using the repository browser.