implemented following users to receive (opt-in) email notifications when they publish an article.
This commit is contained in:
+37
-12
@@ -31,7 +31,8 @@ a,
|
||||
.modal_button,
|
||||
th,
|
||||
td,
|
||||
li {
|
||||
li,
|
||||
span {
|
||||
font-family: 'Hack Nerd Font Mono', Hack, sans-serif;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
@@ -65,7 +66,8 @@ a,
|
||||
label,
|
||||
li,
|
||||
.modal_button,
|
||||
.button {
|
||||
.button,
|
||||
span {
|
||||
font-size: 1vw;
|
||||
}
|
||||
|
||||
@@ -285,10 +287,6 @@ table tr td label {
|
||||
border: 3px solid orange;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
box-shadow: 0 2px 4px 0 rgba(255, 165, 0, 0.3), 0 3px 8px 0 rgba(255, 165, 0, 0.7);
|
||||
}
|
||||
|
||||
.narrow {
|
||||
width: 20%;
|
||||
}
|
||||
@@ -301,10 +299,6 @@ table tr td label {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.tag:hover {
|
||||
box-shadow: 0 2px 4px 0 rgba(255, 165, 0, 0.3), 0 3px 8px 0 rgba(255, 165, 0, 0.7);
|
||||
}
|
||||
|
||||
.tag_row {}
|
||||
|
||||
.tag_box {
|
||||
@@ -383,7 +377,6 @@ textarea:focus,
|
||||
input:hover,
|
||||
textarea:hover {
|
||||
border: 3px solid orange;
|
||||
box-shadow: 0 2px 4px 0 rgba(255, 165, 0, 0.3), 0 3px 8px 0 rgba(255, 165, 0, 0.7);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
@@ -734,6 +727,37 @@ hr {
|
||||
border-radius: 9px;
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-right: 15px;
|
||||
padding: 15px;
|
||||
border-radius: 9px;
|
||||
}
|
||||
|
||||
.dropdown_content {
|
||||
display: none;
|
||||
position: absolute;
|
||||
min-width: 50px;
|
||||
padding: 15px;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.dropdown:hover .dropdown_content {
|
||||
display: block;
|
||||
margin-left: -15px;
|
||||
margin-top: 15px;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.dropdown_content form * {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.margin_right {
|
||||
margin-right: 15px;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 992px) {
|
||||
body {
|
||||
@@ -772,7 +796,8 @@ hr {
|
||||
ul li a,
|
||||
ol li a,
|
||||
.modal_button,
|
||||
.button {
|
||||
.button,
|
||||
span {
|
||||
font-size: 2vw;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user