diff --git a/assets/html/author.html b/assets/html/author.html new file mode 100644 index 0000000..8523eb4 --- /dev/null +++ b/assets/html/author.html @@ -0,0 +1,67 @@ + + + + + + Taskrambler - Author + + + + +
+
+ +
+

Task

+
+ +
+

Rambler

+
+
+
+
+ + + +
+ + +

The Author

+ +

+ [GH] + Here you get a little background about me. Lern who I + am and what have I done in the past. Some of my interests + and so on. What exactly I do not know, I found it + always difficult to write something about myself. +

+ +





+ +

Some words about me

+ +

The most important thing in my life. My family

+ +

Skill profile

+ +

Short vitae

+
+
+ + + + diff --git a/assets/html/documentation.html b/assets/html/documentation.html new file mode 100644 index 0000000..c3e187c --- /dev/null +++ b/assets/html/documentation.html @@ -0,0 +1,52 @@ + + + + + + Taskrambler - Author + + + + +
+
+ +
+

Task

+
+ +
+

Rambler

+
+
+
+
+ + + +
+

Documentation

+ +

+ [GH] + This has to be written and will come in future. +

+ +





+
+
+ + + + diff --git a/assets/html/download.html b/assets/html/download.html new file mode 100644 index 0000000..07829df --- /dev/null +++ b/assets/html/download.html @@ -0,0 +1,53 @@ + + + + + + Taskrambler - Author + + + + +
+
+ +
+

Task

+
+ +
+

Rambler

+
+
+
+
+ + + +
+

Download

+ +

+ [GH] + Here you will find links to snapshots, but please + keep in might that this is an unfinished project. +

+ +





+
+
+ + + + diff --git a/assets/html/example.html b/assets/html/example.html index facb6b0..1dcb85a 100644 --- a/assets/html/example.html +++ b/assets/html/example.html @@ -15,7 +15,7 @@
  • random Value
  • start session
  • login
  • -
  • homepage
  • +
  • homepage
  • Session:
    diff --git a/assets/html/main.html b/assets/html/main.html index 4c8079f..81a2a24 100644 --- a/assets/html/main.html +++ b/assets/html/main.html @@ -11,7 +11,7 @@
    - +

    Task

    diff --git a/assets/image/rambler-bg.jpg b/assets/image/rambler-bg.jpg new file mode 100644 index 0000000..73940de Binary files /dev/null and b/assets/image/rambler-bg.jpg differ diff --git a/assets/image/rambler-logo-small.jpg b/assets/image/rambler-logo-small.jpg new file mode 100644 index 0000000..b46019a Binary files /dev/null and b/assets/image/rambler-logo-small.jpg differ diff --git a/assets/image/rambler-logo2-small.jpg b/assets/image/rambler-logo2-small.jpg new file mode 100644 index 0000000..6ceb90c Binary files /dev/null and b/assets/image/rambler-logo2-small.jpg differ diff --git a/assets/other/OldNewspaperTypes.ttf b/assets/other/OldNewspaperTypes.ttf new file mode 100644 index 0000000..7b9cf31 Binary files /dev/null and b/assets/other/OldNewspaperTypes.ttf differ diff --git a/assets/other/old_typewriter.ttf b/assets/other/old_typewriter.ttf new file mode 100644 index 0000000..4f5d7db Binary files /dev/null and b/assets/other/old_typewriter.ttf differ diff --git a/assets/style/taskrambler.css b/assets/style/taskrambler.css new file mode 100644 index 0000000..838de0f --- /dev/null +++ b/assets/style/taskrambler.css @@ -0,0 +1,131 @@ +@font-face { + font-family: 'old_typewriter'; + src: url(/other/old_typewriter.ttf); +} + +@font-face { + font-family: 'old_newspaper'; + src: url(/other/OldNewspaperTypes.ttf); +} + +.clear { + clear: both; +} + +.author { + font-weight: bold; +} + +.abstract { + font-family: old_newspaper; +} + + +body { + color: rgb(42,44,40); + background-color: rgb(52,54,50); + padding-top: 20px; + padding-bottom: 20px; + font-size: 15px; +} + +h1 { + font-family: old_newspaper; + font-size: 30px; +} + +h2 { + font-family: old_newspaper; + font-size: 20px; +} + +h3 { + font-family: old_newspaper; + font-weight: bold; + font-size: 15px; + text-decoration: underline; +} + +div.main { + top: 50px; + margin-left: auto; + margin-right: auto; + width: 800px; + padding: 10px; + background-image: url(/image/rambler-bg.jpg); + border: 1px solid black; +} + +div.main h1 { + text-align: center; + font-size: xx-large; + font-family: old_newspaper; +} + +#title { + width: 677px; + margin-left: auto; + margin-right: auto; +} + +#title div { + float: left; + height: 100px; + position: relative; + padding: 0px; +} + +#title div.left { + width: 200px; +} + +#title div.right { + width: 300px; +} + +#title div h1 { + font-size: 60px; + position: absolute; + bottom: 0px; + margin: 0px; + color: rgb(42,44,40); +} + +#title div.left h1 { + right: 0px; +} + +#title div.right h1 { + left: 0px; +} + +#title img { + float: left; +} + +#menu { + text-align: center; + width: 100%; +} + +#menu ul { + display: inline-block; + list-style: none; + padding: 0px; +} + +#menu ul li { + float: left; + padding: 10px 34px; + font-family: old_newspaper; + font-size: 20px; + background-color: rgb(42,44,40); + color: rgb(255,253,200); +} + +#menu ul li a { + text-decoration: none; + color: rgb(255,253,200); +} + +// vim: set ft=css ts=4 sw=4: