mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
oooooh
This commit is contained in:
parent
07638d47a6
commit
a0fb0a8663
2 changed files with 5 additions and 5 deletions
|
@ -49,7 +49,7 @@ textarea {
|
||||||
height: 300px;
|
height: 300px;
|
||||||
}
|
}
|
||||||
|
|
||||||
button, input[type="submit"], .button {
|
button, input[type="submit"], .btn {
|
||||||
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
|
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.1);
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
border: 1px solid @text-color;
|
border: 1px solid @text-color;
|
||||||
|
@ -64,12 +64,12 @@ button, input[type="submit"], .button {
|
||||||
cursor: default;
|
cursor: default;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:hover, input[type="submit"]:hover, .button:hover {
|
button:hover, input[type="submit"]:hover, .btn:hover {
|
||||||
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.3);
|
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.3);
|
||||||
border: 1px solid @accent-color;
|
border: 1px solid @accent-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
button:active, input[type="submit"]:active, .button:active {
|
button:active, input[type="submit"]:active, .btn:active {
|
||||||
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.5);
|
background-color: rgba(red(@text-color), green(@text-color), blue(@text-color), 0.5);
|
||||||
color: @accent-color !important;
|
color: @accent-color !important;
|
||||||
border: 1px solid @accent-color;
|
border: 1px solid @accent-color;
|
||||||
|
|
|
@ -19,9 +19,9 @@
|
||||||
<span class="login-status">
|
<span class="login-status">
|
||||||
{% if session.get('username') is not none %}
|
{% if session.get('username') is not none %}
|
||||||
<a href="/profile/{{ session.get('username') }}">{{ session.get('username') }}</a>
|
<a href="/profile/{{ session.get('username') }}">{{ session.get('username') }}</a>
|
||||||
<a class="button" href="/logout">Logout</a>
|
<a class="btn" href="/logout">Logout</a>
|
||||||
{% else %}
|
{% else %}
|
||||||
<a class="button" href="/login">Login</a>
|
<a class="btn" href="/login">Login</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue