Last active
February 12, 2020 10:28
-
-
Save danmindru/e095b9d890149613c5651f90dc2c5ec2 to your computer and use it in GitHub Desktop.
Devops Stylish Gold
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.region-header { | |
background: #fffbef; | |
} | |
.suite-logo { | |
color: white; | |
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); | |
background: linear-gradient( | |
to right, | |
rgb(191, 149, 63, 0.5), | |
rgb(252, 246, 186, 0.5), | |
rgb(179, 135, 40, 0.5), | |
rgb(251, 245, 183, 0.5), | |
rgb(251, 167, 18, 0.5) | |
); | |
background-size: 1000% 1000%; | |
animation: gold 30s ease infinite; | |
} | |
.suite-logo:hover { | |
color: white; | |
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); | |
animation: gold 10s infinite; | |
} | |
@keyframes gold { | |
0% { | |
background-position: 79% 0%; | |
} | |
50% { | |
background-position: 22% 100%; | |
} | |
100% { | |
background-position: 79% 0%; | |
} | |
} | |
.project-navigation { | |
background: #fffbede8; | |
} | |
.project-navigation .displayed { | |
background: #b39a71; | |
color: white; | |
} | |
.project-navigation .displayed:hover { | |
background: #b39a71; | |
} | |
.project-navigation .hub.displayed { | |
background: #5f5442; | |
color: white; | |
} | |
.project-navigation .hub.displayed .navigation-icon { | |
filter: brightness(3.5); | |
} | |
.hub .navigation-icon { | |
color: #848277; | |
} | |
.project-navigation .displayed .navigation-text { | |
color: white; | |
} | |
.navigation-text { | |
color: #c59d0c; | |
font-weight: 300; | |
font-size: 15px; | |
letter-spacing: 0.2px; | |
} | |
.navigation-icon { | |
filter: sepia(1); | |
} | |
.project-header { | |
z-index: 99999999; | |
box-shadow: 4px 2px 7px 4px #00000036; | |
} | |
/** boards **/ | |
.visual-progress-underallocated { | |
background-color: #e0d2b4; | |
background-image: linear-gradient(315deg, #e0d2b4 0%, #e2ac6b 74%); | |
} | |
.visual-progress-overallocated { | |
background-color: #eb4511; | |
background-image: linear-gradient(315deg, #eb4511 0%, #b02e0c 74%); | |
} | |
/** prs **/ | |
.description-row .status-indicator.completed { | |
background-color: #e0d2b4; | |
background-image: linear-gradient(315deg, #e0d2b4 0%, #e2ac6b 74%); | |
} | |
/** code **/ | |
.monaco-editor-background .mtk1 { | |
color: white; | |
} | |
.monaco-editor-background .mtk29 { | |
color: #ffcd00; | |
} | |
.monaco-editor-background .mtk10 { | |
color: #848484; | |
} | |
.monaco-editor-background .mtk5 { | |
color: #5eff5f; | |
} | |
.monaco-editor-background .mtk11 { | |
color: #d395ff; | |
} | |
/* Customize website's scrollbar like Mac OS | |
Not supports in Firefox and IE */ | |
/* total width */ | |
::-webkit-scrollbar { | |
background-color: #fff; | |
width: 16px; | |
} | |
/* background of the scrollbar except button or resizer */ | |
::-webkit-scrollbar-track { | |
background-color: #fff; | |
} | |
/* scrollbar itself */ | |
::-webkit-scrollbar-thumb { | |
background-color: #babac0; | |
border-radius: 16px; | |
border: 4px solid #fff; | |
} | |
/* set button(top and bottom of the scrollbar) */ | |
::-webkit-scrollbar-button { | |
display: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment