Minor CSS fixes

This commit is contained in:
2022-11-11 16:34:44 +03:00
parent 6a0193c698
commit 230a2b4501
6 changed files with 13 additions and 27 deletions
@@ -1,11 +1,11 @@
div.calendarpage { div.content.calendar hr {
margin: 10px; border: 0;
padding: 10px; border-top: 1px solid #000000;
border: 3px solid #000000; opacity: 1;
border-radius: 20px; margin: 30px 0px 10px;
} }
div.calendarpage h2 { div.content.calendar h2 {
text-align: center; text-align: center;
} }
@@ -14,13 +14,6 @@ div.current-year {
justify-content: space-between; justify-content: space-between;
} }
div.calendarpage hr {
border: 0;
border-top: 1px solid #000000;
opacity: 1;
margin: 30px 0px 10px;
}
hr { hr {
border: 10px solid green; border: 10px solid green;
border-radius: 5px; border-radius: 5px;
@@ -67,7 +60,7 @@ table.month td.with_events a {
color: #fefefe; color: #fefefe;
} }
div.calendar { div.content.calendar div.calendar {
column-width: 350px; column-width: 350px;
column-rule: 1px solid #000000; column-rule: 1px solid #000000;
column-gap: 25px; column-gap: 25px;
@@ -11,7 +11,7 @@
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<div class="calendarpage"> <div class="content calendar">
{% if type == 'year' %} {% if type == 'year' %}
<h1 class="title">Календарь</h1> <h1 class="title">Календарь</h1>
+1 -8
View File
@@ -1,11 +1,4 @@
div.linkspage { div.content.links ul {
margin: 10px;
padding: 10px;
border: 3px solid #000000;
border-radius: 20px;
}
ul {
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
padding: 0; padding: 0;
+1 -1
View File
@@ -11,7 +11,7 @@
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<div class="linkspage"> <div class="content links">
<h1 class="title">Полезные ссылки</h1> <h1 class="title">Полезные ссылки</h1>
<ul> <ul>
{% for link in links %} {% for link in links %}
+2 -2
View File
@@ -1,8 +1,8 @@
div.mainpage { div.content {
margin: 10px; margin: 10px;
padding: 10px; padding: 10px;
border: 3px solid #000000; border: 3px solid #000000;
border-radius: 20px; border-radius: 10px;
} }
aside.menu { aside.menu {
+1 -1
View File
@@ -5,7 +5,7 @@
{% endblock %} {% endblock %}
{% block content %} {% block content %}
<div class="mainpage"> <div class="content main">
<h1 class="title">Главная страница</h1> <h1 class="title">Главная страница</h1>
</div> </div>
{% endblock %} {% endblock %}