diff --git a/index.html b/index.html index 9a96413..4eb4db1 100644 --- a/index.html +++ b/index.html @@ -1,21 +1,49 @@ - - -procxx.github.io — Главная страница - + + + procxx.github.io — Main Page + - - Welcome to the ProCxx main page! Join us in Telegram: - @ProCxx (also you can see chat's live activity - here) -
- Also we have the newbies' chat, #supapro. Join via this invite link: - https://telegram.me/joinchat/AAAAAD3eN3KytHPyhyh96w - Also we recommend the CodingTeam community: https://codingteam.org.ru/ + +
+
+

Welcome to the ProCxx!

+
+ + +

Projects [wip]

+
    +
  1. Telegram Fork
  2. +
+

Mini-articles (on Telegra.ph) [wip]

+
    +
  1. Git guides
  2. +
  3. Some Math courses for computing
  4. +
  5. Chat tips (work in progress)
  6. +
+

Articles on github.io

+ +
diff --git a/style/bg.png b/style/bg.png new file mode 100644 index 0000000..539ef0b Binary files /dev/null and b/style/bg.png differ diff --git a/style/cpp.png b/style/cpp.png new file mode 100644 index 0000000..c62b64e Binary files /dev/null and b/style/cpp.png differ diff --git a/style/style.css b/style/style.css new file mode 100644 index 0000000..cd6766a --- /dev/null +++ b/style/style.css @@ -0,0 +1,31 @@ +@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,700'); + +header { + background-image: url("cpp.png"); + padding-left: 30px; + background-repeat: no-repeat; + background-size: contain; + background-position: left top; +} + +body{ + background-image: url("bg.png"); + background-size: cover; + background-repeat: no-repeat; + font-family: Ubuntu; +} + +#main{ + width: 85%; + left: 5%; + background-color: rgba(255, 255, 255, 0.7); + height: 100%; + border: 2px solid white; + padding: 20px; + top: 0px; + position: absolute; +} + +span.procxx{ + color: blue; +}