Skip to content
This repository has been archived by the owner on Aug 20, 2023. It is now read-only.

Commit

Permalink
Compile Now
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnkalk committed Oct 16, 2021
1 parent 60e1683 commit c012efb
Show file tree
Hide file tree
Showing 18 changed files with 2,951 additions and 18 deletions.
1,478 changes: 1,471 additions & 7 deletions src/css/GodUi.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/css/GodUi.min.css

Large diffs are not rendered by default.

50 changes: 50 additions & 0 deletions src/css/components/pagi.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
pagi {
position: static;
display: flex;
}
pagi item {
cursor: pointer;
z-index: 1;
flex: 0 1 auto;
padding: 5px 10px;
border: 1.5px #9e9e9e solid;
transition: 150ms;
}
pagi item:first-child {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
pagi item:first-child::before {
content: "<";
}
pagi item:last-child {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
pagi item:last-child::before {
content: ">";
}
pagi item[active] {
background-color: var(--primary-color);
color: white;
}
pagi item[active] a:visited {
color: white;
}
pagi item[active] a:hover {
color: white;
}
pagi item[disable] {
cursor: default;
z-index: 2;
background-color: rgba(0, 0, 0, 0.1);
opacity: 80%;
color: #757575;
}
pagi item:hover:not(pagi item[active], pagi item[disable]) {
z-index: 2;
background-color: rgba(0, 0, 0, 0.2);
}
pagi item:not(pagi item:first-child) {
border-left: none;
}
1 change: 1 addition & 0 deletions src/css/components/pagi.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions src/css/components/pg-bar.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ pgbar {
min-height: 20px;
border-radius: 2.5px;
background-color: var(--bar-color);
filter: brightness(0.75);
filter: none;
overflow: hidden;
border-radius: 10px;
}
pgbar bar {
position: absolute;
Expand All @@ -18,8 +19,9 @@ pgbar bar {
padding: 2px 5px;
padding-left: calc( var(--active) / 2);
background-color: var(--active-color);
box-shadow: 2.5px 0px 0.5px var(--secondary-color);
width: var(--active);
height: 100%;
color: var(--color);
filter: brightness(1.15);
filter: none;
}
2 changes: 1 addition & 1 deletion src/css/components/pg-bar.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c012efb

Please sign in to comment.