diff --git a/avatar.jpg b/avatar.jpg new file mode 100644 index 0000000..ed16b11 Binary files /dev/null and b/avatar.jpg differ diff --git a/fonts/BitcountGridDouble-Regular.ttf b/fonts/BitcountGridDouble-Regular.ttf new file mode 100644 index 0000000..1ec0291 Binary files /dev/null and b/fonts/BitcountGridDouble-Regular.ttf differ diff --git a/icon.jpg b/icon.jpg new file mode 100644 index 0000000..e6c6301 Binary files /dev/null and b/icon.jpg differ diff --git a/schedule.html b/schedule.html new file mode 100644 index 0000000..c818694 --- /dev/null +++ b/schedule.html @@ -0,0 +1,86 @@ + + + + + + + Мой дневник + + +
+

Мой дневник

+ Моя аватарка + + +
+ +
+
+

Понедельник

+ +
+ +
+

Вторник

+ +
+ +
+

Среда

+ +
+ +
+

Четверг

+ +
+ +
+

Пятница

+ +
+ +
+

Суббота

+ +
+ +
+

Воскресенье

+ +
+
+ +
+

Заметочки-с

+ +
+ + \ No newline at end of file diff --git a/stylesForSchedule.css b/stylesForSchedule.css new file mode 100644 index 0000000..89218ef --- /dev/null +++ b/stylesForSchedule.css @@ -0,0 +1,76 @@ +/* I know this won't work for ru language :) */ +@font-face { + font-family: 'Bitcount'; + src: url(./fonts/BitcountGridDouble-Regular.ttf) format('truetype'); + font-weight: 400; + font-style: normal; +} + +body { + font-family: 'Bitcount', sans-serif; + max-width: 800px; + padding: 20px; + margin: 0 auto; + background-color: #f5f5f5; + } + h1,h2,div{ + font-family: 'Bitcount', sans-serif; + font-weight: normal; + } + header { + text-align: center; + margin-bottom: 30px; + } + + .avatar { + width: 150px; + height: 150px; + border-radius: 50%; + border: 4px solid #333; + margin-top: 15px; + } + + .monday { + background-color: #ffe6e6; + } + .tuesday { + background-color: #e6f3ff; + } + .wednesday { + background-color: #f0e6ff; + } + .thursday { + background-color: #e6ffe6; + } + .friday { + background-color: #fffae6; + } + .saturday { + background-color: #ffe6f3; + } + .sunday { + background-color: #e6ffe6; + } + + h2 { + margin-top: 5px; + color: #333; + } + + ul { + padding-left: 20px; + } + + li { + margin-bottom: 5px; + } + + textarea { + width: 100%; + height: 150px; + border: 2px solid #ddd; + border-radius: 8px; + font-size: 16px; + padding: 12px; + } + \ No newline at end of file