commit bf6ee7956338bccf96229e17ce093580bece75dc Author: ennucore Date: Thu Jun 2 19:30:55 2022 +0300 Init diff --git a/assets/CRC25.woff b/assets/CRC25.woff new file mode 100644 index 0000000..7110e0c Binary files /dev/null and b/assets/CRC25.woff differ diff --git a/assets/CRC35.woff b/assets/CRC35.woff new file mode 100644 index 0000000..e1f2ea4 Binary files /dev/null and b/assets/CRC35.woff differ diff --git a/assets/CRC55.woff b/assets/CRC55.woff new file mode 100644 index 0000000..eeb8f2b Binary files /dev/null and b/assets/CRC55.woff differ diff --git a/assets/CRC65.woff b/assets/CRC65.woff new file mode 100644 index 0000000..2662771 Binary files /dev/null and b/assets/CRC65.woff differ diff --git a/assets/css/style.css b/assets/css/style.css new file mode 100644 index 0000000..064930a --- /dev/null +++ b/assets/css/style.css @@ -0,0 +1,287 @@ +/*@font-face { + font-family: Circe; + src: url(/assets/CRC35.otf); +} + +@font-face { + font-family: Circe; + src: url(/assets/CRC55.otf); + font-weight: bold; +}*/ + +@font-face { + font-family: 'Circe'; + font-style: normal; + font-weight: normal; + src: local('Circe'), url('CRC55.woff') format('woff'); + } + + +@font-face { + font-family: 'Circe Extra Light'; + font-style: normal; + font-weight: normal; + src: local('Circe Extra Light'), url('CRC25.woff') format('woff'); + } + + +@font-face { + font-family: 'Circe Light'; + font-style: normal; + font-weight: normal; + src: local('Circe Light'), url('CRC35.woff') format('woff'); +} + +h1, +h2, +h3, +h4, +h5, +h6 { + font-family: 'Circe', sans-serif; +} + +h1 { + font-size: 48px; +} + +h2 { + font-size: 36px; +} + +h3 { + font-size: 28px; +} + +h4 { + font-size: 22px; +} + +h5 { + font-size: 18px; +} + +h6 { + font-size: 16px; +} + +p.text { + color: #000; +} + +ul, +ol { + margin: 0px; + padding: 0px; + list-style-type: none; +} + +p { + font-family: 'Comfortaa', sans-serif; + font-size: 16px; + font-weight: 400; + line-height: 26px; + margin: 0px; +} + +.bg_cover { + background-position: center center; + background-size: cover; + background-repeat: no-repeat; + width: 100%; + height: 100%; +} + +/*===== All Button Style =====*/ +.main-btn { + display: inline-block; + font-weight: 500; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + padding: 0 25px; + font-size: 16px; + line-height: 48px; + border-radius: 8px; + border: 0; + color: #fff; + cursor: pointer; + z-index: 5; + -webkit-transition: all 0.4s ease-out 0s; + transition: all 0.4s ease-out 0s; + background: -webkit-gradient(linear, left top, right top, from(#33c8c1), color-stop(50%, #119bd2), to(#33c8c1)); + background: linear-gradient(to right, #33c8c1 0%, #119bd2 50%, #33c8c1 100%); + background-size: 200%; +} + +.main-btn:hover { + color: #fff; + background-position: right center; +} + +@media (max-width: 767px) { + .container { + padding-left: 20px; + padding-right: 20px; + } +} + +/*===== All Section Title Style =====*/ +.section-title .line { + background: -webkit-gradient(linear, left top, left bottom, from(#fe8464), to(#fe6e9a)); + background: linear-gradient(#fe8464 0%, #fe6e9a 100%); + width: 150px; + height: 5px; + margin-bottom: 10px !important; +} + +.section-title .sub-title { + font-size: 18px; + font-weight: 400; + color: #361CC1; + text-transform: uppercase; +} + +@media (max-width: 767px) { + .section-title .sub-title { + font-size: 16px; + } +} + +.section-title .title { + font-size: 32px; + padding-top: 10px; +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .section-title .title { + font-size: 30px; + } +} + +@media (max-width: 767px) { + .section-title .title { + font-size: 24px; + } +} + +.section-title .title span { + font-weight: 400; + display: contents; +} + + + +/*=========================== + SERVICES css +===========================*/ +.single-services { + background-color: #fff; + -webkit-box-shadow: 0px 5px 30px 0px rgba(167, 167, 167, 0.16); + box-shadow: 0px 5px 30px 0px rgba(167, 167, 167, 0.16); + -webkit-transition: all 0.3s ease-out 0s; + transition: all 0.3s ease-out 0s; + padding: 50px 30px; + border: 2px solid transparent; + border-radius: 8px; +} + +@media (max-width: 767px) { + .single-services { + padding: 20px 20px 30px; + } +} + +.single-services .services-icon { + display: inline-block; + position: relative; +} + +.single-services .services-icon img { + -webkit-transition: all 0.4s ease-out 0s; + transition: all 0.4s ease-out 0s; +} + +.single-services .services-icon .shape-1 { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); +} + +.single-services .services-icon i { + position: absolute; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + font-size: 34px; + color: #fff; +} + +.single-services .services-content .services-title a { + font-size: 26px; + font-weight: 700; + color: #2E2E2E; + -webkit-transition: all 0.3s ease-out 0s; + transition: all 0.3s ease-out 0s; +} + +@media only screen and (min-width: 992px) and (max-width: 1199px) { + .single-services .services-content .services-title a { + font-size: 24px; + } +} + +@media (max-width: 767px) { + .single-services .services-content .services-title a { + font-size: 20px; + } +} + +.single-services .services-content .services-title a:hover { + color: #361CC1; +} + +.single-services .services-content .text { + margin-top: 30px; +} + +@media (max-width: 767px) { + .single-services .services-content .text { + margin-top: 20px; + } +} + +.single-services .services-content .more { + margin-top: 30px; + font-size: 16px; + font-weight: 400; + color: #fe7a7b; + -webkit-transition: all 0.3s ease-out 0s; + transition: all 0.3s ease-out 0s; +} + +.single-services .services-content .more i { + margin-left: 10px; + font-size: 14px; + font-weight: 700; +} + +.single-services .services-content .more:hover { + letter-spacing: 2px; +} + +.single-services:hover { + border-color: #fe7a7b; +} + +.single-services:hover .services-icon .shape { + -webkit-transform: rotate(25deg); + transform: rotate(25deg); +} diff --git a/assets/images/services/services-shape-1.svg b/assets/images/services/services-shape-1.svg new file mode 100644 index 0000000..413d92b --- /dev/null +++ b/assets/images/services/services-shape-1.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/assets/images/services/services-shape-2.svg b/assets/images/services/services-shape-2.svg new file mode 100644 index 0000000..70e5045 --- /dev/null +++ b/assets/images/services/services-shape-2.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/assets/images/services/services-shape-3.svg b/assets/images/services/services-shape-3.svg new file mode 100644 index 0000000..c79e178 --- /dev/null +++ b/assets/images/services/services-shape-3.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/assets/images/services/services-shape.svg b/assets/images/services/services-shape.svg new file mode 100644 index 0000000..71e6f6c --- /dev/null +++ b/assets/images/services/services-shape.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/climbing_mountain.svg b/climbing_mountain.svg new file mode 100644 index 0000000..3d86033 --- /dev/null +++ b/climbing_mountain.svg @@ -0,0 +1,340 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/collab.svg b/collab.svg new file mode 100644 index 0000000..d80ef4d --- /dev/null +++ b/collab.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/exams.svg b/exams.svg new file mode 100644 index 0000000..a74771d --- /dev/null +++ b/exams.svg @@ -0,0 +1,228 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/exams_black.svg b/exams_black.svg new file mode 100644 index 0000000..f1d85b9 --- /dev/null +++ b/exams_black.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/hero.png b/hero.png new file mode 100644 index 0000000..bdf84e6 Binary files /dev/null and b/hero.png differ diff --git a/hero.svg b/hero.svg new file mode 100644 index 0000000..3d86033 --- /dev/null +++ b/hero.svg @@ -0,0 +1,340 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/index.html b/index.html new file mode 100644 index 0000000..e3d2381 --- /dev/null +++ b/index.html @@ -0,0 +1,679 @@ + + + + + + + + Заботай! + + + + + + + + + + + + + + + + +
+
+ +
+ +

+ Подготовься к олимпиадам +

+

+ Покажи всем, на что ты способен! + Используй наш сервис для подготовки к олимпиадам по физике, чтобы побеждать +

+ +
+ +
+ +
+
+
+
+ + + + + + + + + + + + +
+
+
+ +
+
+

+ Решай где хочешь и когда хочешь +

+

+ Готовься в комфортном тебе темпе. Главное - это регулярность! +

+
+
+ +
+
+
+
+ +
+
+
+

+ Получи доступ к сообществу умных и мотивированных людей +

+

+

+
+
+
+
+
+

+ Получай советы от опытных преподавателей +

+

+ Отправляй задачи на проверку и получай результаты, а также темы, которые нужно изучать именно тебе +

+
+
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + +
+
+
+
+
+
+

+ Как мы поможем? +

+
+ +
+
+ +
+
+
+
+ shape + shape + +
+ +
+ +
+
+
+
+ shape + shape + +
+
+

+ Узнай, что полезнее всего изучать именно тебе именно сейчас +

+

+ Lorem ipsum dolor sit amet,consetetur sadipscing elitr, + seddiam nonu eirmod tempor invidunt labore. +

+ Learn More + +
+
+ +
+
+
+
+ shape + shape + +
+
+

+ Соревнуйся с другими +

+

+ Lorem ipsum dolor sit amet,consetetur sadipscing elitr, + seddiam nonu eirmod tempor invidunt labore. +

+ Learn More + +
+
+ +
+
+ +
+ + + +
+
+ + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + +
+

+ Заботай! +

+
+
+
+

+ Подготовка к олимпиадам проста как никогда! +

+ +
+ + + + + + + diff --git a/peer-help-orig.svg b/peer-help-orig.svg new file mode 100644 index 0000000..59f4750 --- /dev/null +++ b/peer-help-orig.svg @@ -0,0 +1,621 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/peer-help.svg b/peer-help.svg new file mode 100644 index 0000000..13f7247 --- /dev/null +++ b/peer-help.svg @@ -0,0 +1,621 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sketching.svg b/sketching.svg new file mode 100644 index 0000000..ee1e7bc --- /dev/null +++ b/sketching.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/zabotay.png b/zabotay.png new file mode 100644 index 0000000..9766eeb Binary files /dev/null and b/zabotay.png differ diff --git a/zabotay.svg b/zabotay.svg new file mode 100644 index 0000000..4328b7e --- /dev/null +++ b/zabotay.svg @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + заbotay + +