ikinci temizlik tamamlandı

This commit is contained in:
Ümit Tunç
2026-04-28 21:15:09 +03:00
parent f80443aec0
commit 37e7296527
8313 changed files with 2400677 additions and 0 deletions
+149
View File
@@ -0,0 +1,149 @@
/*body{
font-size: 1rem;
}*/
h6{
font-size: 1rem;
}
.navbar-top{
position: fixed;
top: 0;
width: 100%;
height: 62px;
z-index: 9999;
}
.page-wrapper {
margin-top: 62px;
}
/* Left side bar*/
.left-sidebar{
position: fixed;
top: 62px;
left: 0;
bottom: 0;
width: 300px;
border-right: 1px solid #e0e4ef;
}
.left-sidebar ul{
overflow: hidden;
}
.left-sidebar .list-group-borderless .list-group-item {
padding: 5px 12px;
font-size: 0.875rem;
}
.left-sidebar .list-group-borderless .active:hover{
background:#19191c;
color: #fff;
}
/* Main content */
.main-content{
margin-left: 300px;
padding: 0px 100px 50px;
}
@media (max-width: 992px) {
.main-content{
padding: 0px 50px 50px;
}
}
@media (max-width: 768px) {
.left-sidebar{
width: 200px;
}
.main-content{
margin-left: 200px;
padding: 0px 20px 50px;
}
}
@media (max-width: 575px) {
.navbar-top{
position: relative;
}
.page-wrapper {
margin-top: 0;
}
.left-sidebar{
width: 260px;
}
.main-content{
margin-left: 0px;
padding: 0px 20px 50px;
}
}
.copy-link{
position: absolute;
top: 10px;
right: 10px;
z-index: 9;
}
.badge{
font-size: 100%;
}
/*Custom scroll bar*/
.ss-wrapper {
overflow: hidden;
width: 100%;
height: 100%;
position: relative;
z-index: 1;
float: left;
}
.ss-content {
height: 100%;
width: calc(100% + 18px);
padding: 0 0 0 0;
position: relative;
overflow-x: auto;
overflow-y: scroll;
box-sizing: border-box;
}
.ss-content.rtl {
width: calc(100% + 18px);
right: auto;
}
.ss-scroll {
position: relative;
background: rgba(0, 0, 0, 0.1);
width: 9px;
border-radius: 4px;
top: 0;
z-index: 2;
cursor: pointer;
opacity: 0;
transition: opacity 0.25s linear;
}
.ss-hidden {
display: none;
}
.ss-container:hover .ss-scroll,
.ss-container:active .ss-scroll {
opacity: 1;
}
.ss-grabbed {
-o-user-select: none;
-ms-user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
.changelog-page .badge{
width: 80px;
}
+143
View File
@@ -0,0 +1,143 @@
/**
* atom-dark theme for `prism.js`
* Based on Atom's `atom-dark` theme: https://github.com/atom/atom-dark-syntax
* @author Joe Gibson (@gibsjose)
*/
code[class*="language-"],
pre[class*="language-"] {
color: #c5c8c6;
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
font-family: Inconsolata, Monaco, Consolas, 'Courier New', Courier, monospace;
direction: ltr;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
border-radius: 0.3em;
}
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
background: #343a40;
}
/* Inline code */
:not(pre) > code[class*="language-"] {
padding: .1em;
border-radius: .3em;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: #7C7C7C;
}
.token.punctuation {
color: #c5c8c6;
}
.namespace {
opacity: .7;
}
.token.property,
.token.keyword,
.token.tag {
color: #96CBFE;
}
.token.class-name {
color: #FFFFB6;
text-decoration: underline;
}
.token.boolean,
.token.constant {
color: #99CC99;
}
.token.symbol,
.token.deleted {
color: #f92672;
}
.token.number {
color: #FF73FD;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #A8FF60;
}
.token.variable {
color: #C6C5FE;
}
.token.operator {
color: #EDEDED;
}
.token.entity {
color: #FFFFB6;
cursor: help;
}
.token.url {
color: #96CBFE;
}
.language-css .token.string,
.style .token.string {
color: #87C38A;
}
.token.atrule,
.token.attr-value {
color: #F9EE98;
}
.token.function {
color: #DAD085;
}
.token.regex {
color: #E9C062;
}
.token.important {
color: #fd971f;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
File diff suppressed because it is too large Load Diff