mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
fork refine
This commit is contained in:
1319
documentation/src/css/custom.css
Normal file
1319
documentation/src/css/custom.css
Normal file
File diff suppressed because it is too large
Load Diff
206
documentation/src/css/demo-page.css
Normal file
206
documentation/src/css/demo-page.css
Normal file
@@ -0,0 +1,206 @@
|
||||
.main-title-container {
|
||||
position: absolute;
|
||||
padding-top: 24px;
|
||||
width: 100%;
|
||||
text-align: center;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.main-title-container h1 {
|
||||
text-transform: uppercase;
|
||||
color: white;
|
||||
font-weight: 800;
|
||||
font-size: 72px;
|
||||
text-shadow: 4px 6px 8px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.Pane1 {
|
||||
background-color: #2a132e;
|
||||
}
|
||||
|
||||
.Pane2 {
|
||||
background-color: rgba(251, 122, 50, 1);
|
||||
}
|
||||
|
||||
.pane {
|
||||
margin-top: 240px;
|
||||
padding: 0px 12px 24px 12px;
|
||||
height: 1000px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.pane iframe {
|
||||
border: 0;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.pane-header {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin-bottom: 12px;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.pane-header h2 {
|
||||
font-size: 36px;
|
||||
font-weight: 900;
|
||||
color: white;
|
||||
text-shadow: 1.41799px 2.83598px 4.25397px rgba(0, 0, 0, 0.32);
|
||||
margin-bottom: -4px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.pane-header p {
|
||||
font-size: 18px;
|
||||
color: white;
|
||||
font-weight: 300;
|
||||
text-shadow: 1.41799px 2.83598px 4.25397px rgba(0, 0, 0, 0.32);
|
||||
}
|
||||
|
||||
.pane-header-right {
|
||||
padding-left: 48px;
|
||||
}
|
||||
|
||||
.pane-header-left {
|
||||
padding-right: 48px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.toggle {
|
||||
position: absolute;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
top: 250px;
|
||||
width: 40px;
|
||||
height: 60px;
|
||||
font-size: 64px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.toggle:hover svg {
|
||||
transform: scale(1.2);
|
||||
}
|
||||
|
||||
.toggle-left {
|
||||
right: 0;
|
||||
border-top-left-radius: 99px;
|
||||
border-bottom-left-radius: 99px;
|
||||
background-color: rgba(251, 122, 50, 1);
|
||||
}
|
||||
|
||||
.toggle-right {
|
||||
left: 0;
|
||||
border-top-right-radius: 99px;
|
||||
border-bottom-right-radius: 99px;
|
||||
background-color: #2a132e;
|
||||
}
|
||||
|
||||
.tabs {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
padding-left: 24px;
|
||||
padding-right: 24px;
|
||||
}
|
||||
|
||||
.tab-button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 12px 16px;
|
||||
height: 100%;
|
||||
border: 1px solid #e2e2e2;
|
||||
border-top-right-radius: 8px;
|
||||
border-top-left-radius: 8px;
|
||||
background-color: #f5f5f5;
|
||||
color: #595959;
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.tab-button:hover {
|
||||
background-color: #fff;
|
||||
}
|
||||
|
||||
.tab-button.active {
|
||||
background-color: #fff;
|
||||
color: #3490ff;
|
||||
}
|
||||
|
||||
.tab-button a {
|
||||
display: flex;
|
||||
margin-left: 6px;
|
||||
color: #595959;
|
||||
transition: all 0.2s;
|
||||
padding: 2px;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.tab-button a:hover {
|
||||
background-color: #f5f5f5;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.desktop-view {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.mobile-view {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.mobile-pane {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
padding: 24px;
|
||||
text-align: center;
|
||||
line-height: 24px;
|
||||
}
|
||||
|
||||
.mobile-pane h2 {
|
||||
font-size: 48px;
|
||||
font-weight: 900;
|
||||
color: white;
|
||||
text-shadow: 1.41799px 2.83598px 4.25397px rgba(0, 0, 0, 0.32);
|
||||
margin-bottom: -4px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.mobile-pane p {
|
||||
font-size: 18px;
|
||||
color: white;
|
||||
font-weight: 300;
|
||||
text-shadow: 1.41799px 2.83598px 4.25397px rgba(0, 0, 0, 0.32);
|
||||
}
|
||||
|
||||
.mobile-pane img {
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.client-pane {
|
||||
background-color: #2a132e;
|
||||
}
|
||||
|
||||
.admin-pane {
|
||||
background-color: rgba(251, 122, 50, 1);
|
||||
}
|
||||
|
||||
.mobile-img-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.mobile-img-container img:first-child {
|
||||
margin-bottom: -24px;
|
||||
}
|
||||
48
documentation/src/css/split-pane.css
Normal file
48
documentation/src/css/split-pane.css
Normal file
@@ -0,0 +1,48 @@
|
||||
.Resizer {
|
||||
background: black;
|
||||
z-index: 1;
|
||||
-moz-box-sizing: border-box;
|
||||
-webkit-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
-moz-background-clip: padding;
|
||||
-webkit-background-clip: padding;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
|
||||
.Resizer:hover {
|
||||
-webkit-transition: all 2s ease;
|
||||
transition: all 2s ease;
|
||||
}
|
||||
|
||||
.Resizer.horizontal {
|
||||
height: 12px;
|
||||
margin: -5px 0;
|
||||
border-top: 5px solid rgba(255, 255, 255, 0);
|
||||
border-bottom: 5px solid rgba(255, 255, 255, 0);
|
||||
cursor: row-resize;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.Resizer.horizontal:hover {
|
||||
border-top: 5px solid rgba(0, 0, 0, 0.5);
|
||||
border-bottom: 5px solid rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.Resizer.vertical {
|
||||
width: 20px;
|
||||
margin: 0 -5px;
|
||||
border-left: 5px solid rgba(255, 255, 255, 0);
|
||||
border-right: 5px solid rgba(255, 255, 255, 0);
|
||||
cursor: col-resize;
|
||||
}
|
||||
|
||||
.Resizer.vertical:hover {
|
||||
border-left: 5px solid rgba(0, 0, 0, 0.5);
|
||||
border-right: 5px solid rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.Resizer.disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.Resizer.disabled:hover {
|
||||
border-color: transparent;
|
||||
}
|
||||
Reference in New Issue
Block a user