-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
127 changed files
with
25,757 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,341 @@ | ||
|
||
|
||
body { | ||
font-family: 'Lato', arial, sans-serif; | ||
color: #ffffff; | ||
padding: 20px; | ||
font-size: 20px; | ||
background-color: #040c14; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
font-family: 'Montserrat', sans-serif; | ||
font-weight: 700; | ||
color: #020303; | ||
} | ||
|
||
|
||
a { | ||
color: #2a7cf7; | ||
-webkit-transition: all 0.1s ease-in-out; | ||
-moz-transition: all 0.1s ease-in-out; | ||
-ms-transition: all 0.1s ease-in-out; | ||
-o-transition: all 0.1s ease-in-out; | ||
} | ||
a:hover { | ||
text-decoration: underline; | ||
color: #185fca; | ||
} | ||
.btn, | ||
a.btn { | ||
-webkit-transition: all 0.4s ease-in-out; | ||
-moz-transition: all 0.4s ease-in-out; | ||
-ms-transition: all 0.4s ease-in-out; | ||
-o-transition: all 0.4s ease-in-out; | ||
font-family: 'Montserrat', arial, sans-serif; | ||
padding: 8px 16px; | ||
font-weight: bold; | ||
} | ||
.btn .fa, | ||
a.btn .fa { | ||
margin-right: 5px; | ||
} | ||
.btn:focus, | ||
a.btn:focus { | ||
color: #fff; | ||
} | ||
.btn-cta-primary, | ||
a.btn-cta-primary { | ||
background: #2a7dfa; | ||
border: 1px solid #074f66; | ||
color: #fff; | ||
font-weight: 600; | ||
text-transform: uppercase; | ||
transition: all 0.3s ease; /* Добавляем плавный переход для всех свойств */ | ||
} | ||
|
||
.btn-cta-primary:hover, | ||
a.btn-cta-primary:hover { | ||
background: #1b60c9; | ||
border-color: #053c4e; /* Изменяем только цвет рамки */ | ||
color: #fff; | ||
transform: scale(1.1); /* Увеличиваем размер кнопки */ | ||
} | ||
|
||
.text-highlight { | ||
color: #2a7dfa; | ||
} | ||
.offset-header { | ||
padding-top: 90px; | ||
} | ||
pre code { | ||
font-size: 16px; | ||
} | ||
|
||
@keyframes fadeIn { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes slideUp { | ||
from { | ||
transform: translateY(50px); | ||
opacity: 0; | ||
} | ||
to { | ||
transform: translateY(0); | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes slideLeft { | ||
from { | ||
transform: translateX(-50px); | ||
} | ||
to { | ||
transform: translateY(0); | ||
} | ||
} | ||
|
||
|
||
::-webkit-scrollbar { | ||
width: 8px; | ||
} | ||
|
||
::-webkit-scrollbar-track { | ||
background-color: #02171f; | ||
} | ||
|
||
::-webkit-scrollbar-thumb { | ||
background-color: #053c4e; | ||
border-radius: 5px; | ||
} | ||
|
||
::-webkit-scrollbar-thumb:hover { | ||
background-color: #052e3b; | ||
} | ||
|
||
|
||
:root { | ||
--first-value: 10%; | ||
--second-value: 6%; | ||
--third-value: 7%; | ||
} | ||
|
||
|
||
|
||
/* ======= Header ======= */ | ||
.header { | ||
padding: 1px 1px; | ||
padding-left: 40px; | ||
background: #040c14; | ||
color: #fff; | ||
position: relative; | ||
width: 100%; | ||
opacity: 0; | ||
animation: fadeIn 1s cubic-bezier(0.67, -0.14, 0, 1.72) forwards; | ||
z-index: 99999; | ||
} | ||
.header.navbar-fixed-top { | ||
background: #040c14; | ||
z-index: 99999; | ||
|
||
} | ||
.header.navbar-fixed-top .logo a { | ||
color: #a3a3a3; | ||
} | ||
|
||
.header .logo { | ||
margin: 0; | ||
font-size: 26px; | ||
padding-top: 10px; | ||
} | ||
.header .logo a { | ||
color: #fff; | ||
} | ||
.header .logo a:hover { | ||
text-decoration: none; | ||
} | ||
.header .main-nav button { | ||
background: #2a7dfa; | ||
color: #fff !important; | ||
-webkit-border-radius: 4px; | ||
-moz-border-radius: 4px; | ||
-ms-border-radius: 4px; | ||
-o-border-radius: 4px; | ||
border-radius: 4px; | ||
-moz-background-clip: padding; | ||
-webkit-background-clip: padding-box; | ||
background-clip: padding-box; | ||
} | ||
.header .main-nav button:focus { | ||
outline: none; | ||
} | ||
.header .main-nav button .icon-bar { | ||
background-color: #fff; | ||
} | ||
.header .main-nav .navbar-collapse { | ||
padding: 0; | ||
} | ||
.header .main-nav .nav .nav-item { | ||
font-weight: bold; | ||
margin-right: 30px; | ||
font-family: 'Montserrat', sans-serif; | ||
} | ||
.header .main-nav .nav .nav-item.active a { | ||
color: #2a7dfa; | ||
background: none; | ||
} | ||
.header .main-nav .nav .nav-item a { | ||
color: #0a7396; | ||
-webkit-transition: none; | ||
-moz-transition: none; | ||
-ms-transition: none; | ||
-o-transition: none; | ||
font-size: 14px; | ||
padding: 15px 10px; | ||
} | ||
.header .main-nav .nav .nav-item a:hover { | ||
color: #074f66; | ||
background: none; | ||
} | ||
.header .main-nav .nav .nav-item a:focus { | ||
outline: none; | ||
background: none; | ||
} | ||
.header .main-nav .nav .nav-item a:active { | ||
outline: none; | ||
background: none; | ||
} | ||
.header .main-nav .nav .nav-item.active { | ||
color: #17baef; | ||
} | ||
.header .main-nav .nav .nav-item.last { | ||
margin-right: 0; | ||
} | ||
|
||
.section-ladder { | ||
margin-bottom: 10px; | ||
margin-top: 15px; | ||
padding: 40px; | ||
border-radius: 10px; | ||
background-color: #071727; | ||
text-align: center; | ||
animation: slideUp 1s cubic-bezier(0.67, -0.14, 0, 1.72) forwards; | ||
} | ||
|
||
h1 { | ||
color: #ffffff; | ||
margin-bottom: 2px; | ||
} | ||
|
||
h2 { | ||
color: #ffffff; | ||
margin-bottom: 2px; | ||
} | ||
|
||
h3 { | ||
text-align: top; | ||
color: #ffffff; | ||
font-size: 70px; | ||
margin-bottom: 10px; | ||
margin-top: 0.1px; | ||
} | ||
|
||
div { | ||
text-align: left; | ||
} | ||
|
||
.rounded-box { | ||
background-color: #071727; | ||
position: relative; | ||
overflow: hidden; | ||
border-radius: 10px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.rounded-box:before { | ||
content: ''; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background: linear-gradient(to bottom, rgba(13, 45, 77, 0) 0%,rgb(13, 45, 77, 70) 100%); | ||
} | ||
|
||
.rounded-box img { | ||
width: 100%; | ||
height: auto; | ||
display: block; | ||
} | ||
|
||
|
||
|
||
|
||
/* Extra small devices (phones, less than 768px) */ | ||
@media (max-width: 767px) { | ||
.header .main-nav button { | ||
margin-right: 0; | ||
} | ||
.header .main-nav .navbar-collapse { | ||
padding-left: 15px; | ||
padding-right: 15px; | ||
} | ||
.promo .btns .btn { | ||
margin-right: 0; | ||
clear: both; | ||
display: block; | ||
margin-bottom: 30px; | ||
} | ||
.promo .title { | ||
font-size: 66px; | ||
} | ||
.promo .meta { | ||
margin-top: 60px; | ||
} | ||
.promo .meta li { | ||
float: none; | ||
display: block; | ||
margin-bottom: 5px; | ||
} | ||
.contact .author-message { | ||
text-align: center; | ||
} | ||
.contact .author-message .profile { | ||
position: static; | ||
margin: 0 auto; | ||
margin-bottom: 30px; | ||
} | ||
.contact .author-message .speech-bubble { | ||
margin-left: 0; | ||
} | ||
.contact .author-message .speech-bubble:after { | ||
display: none; | ||
} | ||
.contact .social-icons a { | ||
width: 36px; | ||
height: 36px; | ||
padding-top: 7px; | ||
margin-right: 2px; | ||
} | ||
.contact .social-icons a .fa:before { | ||
font-size: 18px; | ||
} | ||
} | ||
|
||
@media only screen and (max-width: 600px) { | ||
h3 { | ||
font-size: 36px; | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<script> | ||
document.addEventListener("DOMContentLoaded", function () { | ||
const newsData = ` | ||
/-- | ||
&& Абиба | ||
&^ Новым руководителем ?&авпвапвапавпва =>https://www.youtube.com/watch?v=zhzyS44r91I&list=RDzhzyS44r91I&start_radio=1<=&? fdsafsdfdsfdsfsdfsdvdfffdsfdsfdsfdfsdfsdfdssdfdbdfgbfgbfgbgfbgfbgfbgfbgf | ||
Жил у бабушки внук ?&ссылка на видео =>https://www.youtube.com/watch?v=zhzyS44r91I&list=RDzhzyS44r91I&start_radio=1<=&? | ||
&^ и крутой параграф 2 ?&ссылка =>https://vgtimes.ru/news/103536-neoficialnyy-perevod-igry-little-goody-two-shoes-uzhe-v-razrabotke.html<=&? и еще крутой | ||
/-- | ||
&& Абиба | ||
&^ Новым руководителем ?&авпвапвапавпва =>https://www.youtube.com/watch?v=zhzyS44r91I&list=RDzhzyS44r91I&start_radio=1<=&? fdsafsdfdsfdsfsdfsdvdfffdsfdsfdsfdfsdfsdfdssdfdbdfgbfgbfgbgfbgfbgfbgfbgf | ||
Жил у бабушки внук ?&ссылка на видео =>https://www.youtube.com/watch?v=zhzyS44r91I&list=RDzhzyS44r91I&start_radio=1<=&? | ||
и крутой параграф 2 ?&ссылка =>https://vgtimes.ru/news/103536-neoficialnyy-perevod-igry-little-goody-two-shoes-uzhe-v-razrabotke.html<=&? и еще крутой | ||
/-- | ||
`; | ||
|
||
const newsSections = newsData.split('/--').filter(Boolean); | ||
|
||
const newsContainer = document.body; | ||
|
||
newsSections.forEach(sectionData => { | ||
const parts = sectionData.split('&&').map(str => str.trim()); | ||
const title = parts[0]; | ||
const contentParts = parts.slice(1).map(part => part.split('&^')); | ||
|
||
// Check if there is any content before creating the section | ||
if (contentParts.length > 0 && contentParts[0][0].trim() !== "") { | ||
const content = contentParts.map(([subTitle, ...paragraphs]) => `<h3>${subTitle}</h3>${paragraphs.map(paragraph => { | ||
// Check for the presence of clickable links with hidden URLs | ||
const linkRegex = /\?&(.+?) =>(.+?)<=&\?/g; | ||
return paragraph.replace(linkRegex, (_, linkText, hiddenUrl) => { | ||
return `<a href="${hiddenUrl}" target="_blank">${linkText}</a>`; | ||
}); | ||
}).join('</p><p>')}`).join('</p><p>'); | ||
|
||
const section = document.createElement('section'); | ||
const heading = document.createElement('h2'); | ||
const paragraph = document.createElement('div'); | ||
|
||
heading.textContent = title; | ||
paragraph.innerHTML = `<p>${content}</p>`; | ||
|
||
section.appendChild(heading); | ||
section.appendChild(paragraph); | ||
|
||
newsContainer.appendChild(section); | ||
} | ||
}); | ||
}); | ||
</script> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[100, 0, 0, 230, 0, 0, 150] |
Binary file not shown.
Binary file not shown.
Oops, something went wrong.