mirror of
https://github.com/TotalFreedomMC/Website.git
synced 2024-12-22 16:25:12 +00:00
Changed the Made by Link
This commit is contained in:
parent
f0e5620766
commit
216caadcb0
7 changed files with 308 additions and 84 deletions
371
css/main.css
371
css/main.css
|
@ -1,126 +1,343 @@
|
|||
* { margin: 0; padding: 0; }
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0; }
|
||||
|
||||
body { font-family: 'Raleway', sans-serif; font-weight: 300; color: #fff; background: #222 url(../images/cover-1.png) center no-repeat fixed; background-size: cover; }
|
||||
body {
|
||||
font-family: 'Raleway', sans-serif;
|
||||
font-weight: 300;
|
||||
color: #fff;
|
||||
background: #222 url(../images/cover-1.png) center no-repeat fixed;
|
||||
background-size: cover; }
|
||||
|
||||
#rules-title, .button { -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease; -ms-transition: all 0.2s ease; -o-transition: all 0.2s ease; transition: all 0.2s ease; z-index: 100; padding: 10px 55px; background: rgba(255, 255, 255, 0.1); color: #c8c8c8; }
|
||||
#rules-title,
|
||||
.button {
|
||||
-webkit-transition: all 0.2s ease;
|
||||
-moz-transition: all 0.2s ease;
|
||||
-ms-transition: all 0.2s ease;
|
||||
-o-transition: all 0.2s ease;
|
||||
transition: all 0.2s ease;
|
||||
z-index: 100;
|
||||
padding: 10px 55px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: #c8c8c8; }
|
||||
#rules-title:hover,
|
||||
.button:hover {
|
||||
background: rgba(200, 200, 200, 0.2); }
|
||||
|
||||
#rules-title:hover, .button:hover { background: rgba(200, 200, 200, 0.2); }
|
||||
#online {
|
||||
font-weight: 200; }
|
||||
|
||||
#online { font-weight: 200; }
|
||||
#rules-title {
|
||||
border-radius: 0px; }
|
||||
|
||||
#rules-title { border-radius: 0px; }
|
||||
.admins ul,
|
||||
.cover-1,
|
||||
.cover-2,
|
||||
.cover-3 .section-title,
|
||||
.rank {
|
||||
text-align: center;
|
||||
position: relative; }
|
||||
|
||||
.admins ul, .cover-1, .cover-2, .cover-3 .section-title, .rank { text-align: center; position: relative; }
|
||||
.brand-logo {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
font-weight: 100; }
|
||||
|
||||
.brand-logo { margin-top: 5px; margin-bottom: 5px; font-weight: 100; }
|
||||
.button-collapse {
|
||||
margin-top: 5px;
|
||||
margin-bottom: 10px; }
|
||||
|
||||
.button-collapse { margin-top: 5px; margin-bottom: 10px; }
|
||||
.cover-1 {
|
||||
font-size: 1.5em;
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
height: 100vh; }
|
||||
|
||||
.cover-1 { font-size: 1.5em; color: rgba(255, 255, 255, 0.4); height: 100vh; }
|
||||
.cover-1 a,
|
||||
.cover-1 h3 {
|
||||
margin-top: 23%; }
|
||||
|
||||
.cover-1 a, .cover-1 h3 { margin-top: 23%; }
|
||||
.cover-2 {
|
||||
background: url(../images/cover-2.png) center fixed;
|
||||
background-size: cover;
|
||||
height: auto;
|
||||
padding-bottom: 40px; }
|
||||
|
||||
.cover-2 { background: url(../images/cover-2.png) center fixed; background-size: cover; height: auto; padding-bottom: 40px; }
|
||||
.rule {
|
||||
z-index: 100;
|
||||
display: none;
|
||||
padding: 30px; }
|
||||
|
||||
.rule { z-index: 100; display: none; padding: 30px; }
|
||||
#rules-title,
|
||||
.admins > ul > a {
|
||||
padding: 10px;
|
||||
display: inline-block; }
|
||||
|
||||
#rules-title, .admins > ul > a { padding: 10px; display: inline-block; }
|
||||
#rules-title {
|
||||
font-size: 1.9em;
|
||||
background: rgba(180, 180, 180, 0.1);
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
-moz-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-webkit-transition: all 0.2s ease;
|
||||
-moz-transition: all 0.2s ease;
|
||||
-ms-transition: all 0.2s ease;
|
||||
-o-transition: all 0.2s ease;
|
||||
transition: all 0.2s ease; }
|
||||
|
||||
#rules-title { font-size: 1.9em; background: rgba(180, 180, 180, 0.1); cursor: pointer; user-select: none; -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease; -ms-transition: all 0.2s ease; -o-transition: all 0.2s ease; transition: all 0.2s ease; }
|
||||
#rules-title:hover {
|
||||
background: rgba(150, 150, 150, 0.2);
|
||||
transform: scale(1.03, 1.03); }
|
||||
|
||||
#rules-title:hover { background: rgba(150, 150, 150, 0.2); -webkit-transform: scale(1.03, 1.03); -ms-transform: scale(1.03, 1.03); transform: scale(1.03, 1.03); }
|
||||
.admins > ul > a,
|
||||
i.rules-icon {
|
||||
-webkit-transition: all 0.2s ease;
|
||||
-moz-transition: all 0.2s ease;
|
||||
-ms-transition: all 0.2s ease;
|
||||
-o-transition: all 0.2s ease;
|
||||
transition: all 0.2s ease; }
|
||||
|
||||
.admins > ul > a, i.rules-icon { -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease; -ms-transition: all 0.2s ease; -o-transition: all 0.2s ease; transition: all 0.2s ease; }
|
||||
i.rules-icon {
|
||||
position: relative;
|
||||
float: right;
|
||||
color: rgba(150, 150, 150, 0.3);
|
||||
-webkit-transition: all 0.2s ease;
|
||||
-moz-transition: all 0.2s ease;
|
||||
-ms-transition: all 0.2s ease;
|
||||
-o-transition: all 0.2s ease;
|
||||
transition: all 0.2s ease; }
|
||||
i.rules-icon:hover {
|
||||
color: #969696; }
|
||||
|
||||
i.rules-icon { position: relative; float: right; color: rgba(150, 150, 150, 0.3); -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease; -ms-transition: all 0.2s ease; -o-transition: all 0.2s ease; transition: all 0.2s ease; }
|
||||
.cover-2 h2,
|
||||
.cover-2 p {
|
||||
width: 75%;
|
||||
font-weight: 300;
|
||||
margin: 0 auto; }
|
||||
|
||||
i.rules-icon:hover { color: #969696; }
|
||||
.cover-2 p {
|
||||
font-size: 1.2em;
|
||||
height: auto; }
|
||||
|
||||
.cover-2 h2, .cover-2 p { width: 75%; font-weight: 300; margin: 0 auto; }
|
||||
.section-title {
|
||||
font-size: 2.5em;
|
||||
color: white;
|
||||
z-index: 100;
|
||||
font-weight: 100; }
|
||||
|
||||
.cover-2 p { font-size: 1.2em; height: auto; }
|
||||
.cover-3 {
|
||||
background: url(../images/cover-3.png) no-repeat fixed;
|
||||
background-size: cover; }
|
||||
|
||||
.section-title { font-size: 2.5em; color: white; z-index: 100; font-weight: 100; }
|
||||
.admins > ul > a {
|
||||
margin: 5px;
|
||||
background: rgba(0, 0, 0, 0.3);
|
||||
-webkit-transition: all 0.2s ease;
|
||||
-moz-transition: all 0.2s ease;
|
||||
-ms-transition: all 0.2s ease;
|
||||
-o-transition: all 0.2s ease;
|
||||
transition: all 0.2s ease;
|
||||
border-radius: 5px;
|
||||
z-index: 200;
|
||||
font-size: 0.9em; }
|
||||
|
||||
.cover-3 { background: url(../images/cover-3.png) no-repeat fixed; background-size: cover; }
|
||||
.admins > ul > a:hover {
|
||||
background: rgba(30, 30, 30, 0.8);
|
||||
transform: translateY(-3px); }
|
||||
|
||||
.admins > ul > a { margin: 5px; background: rgba(0, 0, 0, 0.3); -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease; -ms-transition: all 0.2s ease; -o-transition: all 0.2s ease; transition: all 0.2s ease; border-radius: 5px; z-index: 200; font-size: 0.9em; }
|
||||
.admins ul {
|
||||
z-index: 101; }
|
||||
|
||||
.admins > ul > a:hover { background: rgba(70, 70, 70, 0.15); -webkit-transform: translateY(-3px); -ms-transform: translateY(-3px); transform: translateY(-3px); }
|
||||
.admins a li {
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
font-size: 1.1em;
|
||||
z-index: 102;
|
||||
font-weight: 300; }
|
||||
|
||||
.admins ul { z-index: 101; }
|
||||
.rank {
|
||||
font-size: 1.6em;
|
||||
z-index: 103;
|
||||
font-weight: 200; }
|
||||
|
||||
.admins a li { color: rgba(255, 255, 255, 0.5); font-size: 1.1em; z-index: 102; font-weight: 300; }
|
||||
.rest > li > a,
|
||||
.useful a {
|
||||
padding: 10px;
|
||||
z-index: 100;
|
||||
text-align: center; }
|
||||
|
||||
.rank { font-size: 1.6em; z-index: 103; font-weight: 200; }
|
||||
.cover-1,
|
||||
.cover-2,
|
||||
.cover-3 {
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
|
||||
|
||||
.rest > li > a, .useful a { padding: 10px; z-index: 100; text-align: center; }
|
||||
.rest > li > a {
|
||||
font-size: 1.35em;
|
||||
font-weight: 300;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
border-radius: 10px;
|
||||
-webkit-transition: all 0.2s ease;
|
||||
-moz-transition: all 0.2s ease;
|
||||
-ms-transition: all 0.2s ease;
|
||||
-o-transition: all 0.2s ease;
|
||||
transition: all 0.2s ease;
|
||||
display: inline-block; }
|
||||
.rest > li > a:hover {
|
||||
background: rgba(100, 100, 100, 0.2);
|
||||
color: #fff; }
|
||||
|
||||
.cover-1, .cover-2, .cover-3 { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
|
||||
.rest > li {
|
||||
margin-top: 50px;
|
||||
display: inline-block;
|
||||
-webkit-transition: all 0.2s ease;
|
||||
-moz-transition: all 0.2s ease;
|
||||
-ms-transition: all 0.2s ease;
|
||||
-o-transition: all 0.2s ease;
|
||||
transition: all 0.2s ease; }
|
||||
.rest > li:hover {
|
||||
transform: translateX(5px); }
|
||||
|
||||
.rest > li > a { font-size: 1.35em; font-weight: 300; color: rgba(255, 255, 255, 0.6); border-radius: 10px; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease; -ms-transition: all 0.2s ease; -o-transition: all 0.2s ease; transition: all 0.2s ease; display: inline-block; }
|
||||
.useful a {
|
||||
display: inline-block;
|
||||
font-size: 1.05em;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
border: 2px solid rgba(200, 200, 200, 0.3);
|
||||
margin-right: 10px;
|
||||
border-radius: 50px;
|
||||
width: 200px;
|
||||
-webkit-transition: all 0.2s ease;
|
||||
-moz-transition: all 0.2s ease;
|
||||
-ms-transition: all 0.2s ease;
|
||||
-o-transition: all 0.2s ease;
|
||||
transition: all 0.2s ease;
|
||||
margin-bottom: 10px; }
|
||||
.useful a:hover {
|
||||
background: rgba(100, 100, 100, 0.1);
|
||||
color: #fff;
|
||||
transform: translateY(-5px); }
|
||||
.useful h3 {
|
||||
font-weight: 100; }
|
||||
.useful a > li > i {
|
||||
font-size: 2em;
|
||||
margin-bottom: 10px; }
|
||||
|
||||
.rest > li > a:hover { background: rgba(100, 100, 100, 0.2); color: #fff; }
|
||||
#note {
|
||||
text-align: center;
|
||||
color: #ccc;
|
||||
border-radius: 150px;
|
||||
padding: 15px;
|
||||
z-index: 1; }
|
||||
#note h5 {
|
||||
margin-bottom: -20px; }
|
||||
#note a {
|
||||
color: #c8c8c8;
|
||||
font-weight: 700; }
|
||||
|
||||
.rest > li { margin-top: 50px; display: inline-block; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease; -ms-transition: all 0.2s ease; -o-transition: all 0.2s ease; transition: all 0.2s ease; }
|
||||
.nav-wrapper {
|
||||
margin: -8px;
|
||||
background: rgba(20, 20, 20, 0.5); }
|
||||
.nav-wrapper li > a {
|
||||
font-weight: 200;
|
||||
font-size: .9em; }
|
||||
|
||||
.rest > li:hover { -webkit-transform: translateX(5px); -ms-transform: translateX(5px); transform: translateX(5px); }
|
||||
.cover-2 a {
|
||||
font-size: 1.17em;
|
||||
color: rgba(255, 255, 255, 0.3); }
|
||||
|
||||
.useful a { display: inline-block; font-size: 1.05em; color: rgba(255, 255, 255, 0.6); border: 2px solid rgba(200, 200, 200, 0.3); margin-right: 10px; border-radius: 50px; width: 200px; -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease; -ms-transition: all 0.2s ease; -o-transition: all 0.2s ease; transition: all 0.2s ease; margin-bottom: 10px; }
|
||||
.head-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
float: left;
|
||||
margin-right: 5px;
|
||||
border-radius: 2px; }
|
||||
|
||||
.useful a:hover { background: rgba(100, 100, 100, 0.1); color: #fff; -webkit-transform: translateY(-5px); -ms-transform: translateY(-5px); transform: translateY(-5px); }
|
||||
small {
|
||||
font-size: 0.9em; }
|
||||
|
||||
.useful h3 { font-weight: 100; }
|
||||
.modal {
|
||||
background: rgba(10, 10, 10, 0.8);
|
||||
color: #ccc; }
|
||||
.modal a {
|
||||
color: #c8c8c8; }
|
||||
.modal ul {
|
||||
display: inline-block; }
|
||||
.modal ul li {
|
||||
display: inline-block;
|
||||
padding: 10px;
|
||||
margin: 4px;
|
||||
background: rgba(100, 100, 100, 0.2);
|
||||
-webkit-transition: all 0.2s ease;
|
||||
-moz-transition: all 0.2s ease;
|
||||
-ms-transition: all 0.2s ease;
|
||||
-o-transition: all 0.2s ease;
|
||||
transition: all 0.2s ease;
|
||||
border-radius: 5px;
|
||||
font-size: 0.8em; }
|
||||
.modal ul li:hover {
|
||||
background: rgba(150, 150, 150, 0.3); }
|
||||
.modal h4 {
|
||||
margin-bottom: 38px;
|
||||
font-size: 1.2em;
|
||||
font-weight: 200; }
|
||||
|
||||
.useful a > li > i { font-size: 2em; margin-bottom: 10px; }
|
||||
.modal-msg {
|
||||
background: rgba(34, 34, 34, 0.3);
|
||||
display: inline-block;
|
||||
margin: 100px auto;
|
||||
padding: 20px 40px; }
|
||||
.modal-msg h5 {
|
||||
font-weight: 100;
|
||||
font-size: 0.85em;
|
||||
border-bottom: 3px solid rgba(204, 204, 204, 0.3);
|
||||
padding-bottom: 20px; }
|
||||
.modal-msg span {
|
||||
font-size: 0.9em;
|
||||
font-weight: 200; }
|
||||
|
||||
#note { text-align: center; color: #ccc; border-radius: 150px; padding: 15px; z-index: 1; }
|
||||
.modal > .modal-footer {
|
||||
background: rgba(50, 50, 50, 0.3); }
|
||||
.modal > .modal-footer .modal-close {
|
||||
font-size: .9em;
|
||||
text-transform: none; }
|
||||
|
||||
#note h5 { margin-bottom: -20px; }
|
||||
.waves-effect.waves-brown .waves-ripple {
|
||||
background-color: rgba(230, 230, 230, 0.3); }
|
||||
|
||||
#note a { color: #c8c8c8; font-weight: 700; }
|
||||
.typed-cursor {
|
||||
display: none; }
|
||||
|
||||
.nav-wrapper { margin: -8px; background: rgba(20, 20, 20, 0.5); }
|
||||
@media only screen and (max-width: 768px) {
|
||||
.cover-2 h2,
|
||||
.cover-2 p {
|
||||
width: 100%; }
|
||||
|
||||
.nav-wrapper li > a { font-weight: 200; font-size: .9em; }
|
||||
.online-part {
|
||||
padding: 25% 0.7%; }
|
||||
|
||||
.cover-2 a { font-size: 1.17em; color: rgba(255, 255, 255, 0.3); }
|
||||
.rule {
|
||||
padding: 15px; }
|
||||
|
||||
.head-icon { width: 20px; height: 20px; float: left; margin-right: 5px; border-radius: 2px; }
|
||||
.admins > ul > a {
|
||||
display: block;
|
||||
border-radius: 0; }
|
||||
|
||||
small { font-size: 0.9em; }
|
||||
.head-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
margin-right: 0;
|
||||
float: left;
|
||||
border-radius: 50%; }
|
||||
|
||||
.modal { background: rgba(10, 10, 10, 0.8); color: #ccc; }
|
||||
.modal li {
|
||||
display: block;
|
||||
width: 100%;
|
||||
padding: 5px 70px; }
|
||||
|
||||
.modal a { color: #c8c8c8; }
|
||||
.modal-msg {
|
||||
margin: 25px 0;
|
||||
padding: 5px; }
|
||||
|
||||
.modal ul { display: inline-block; }
|
||||
.modal.modal-fixed-footer .modal-content {
|
||||
padding: 10px; } }
|
||||
|
||||
.modal ul li { display: inline-block; padding: 10px; margin: 4px; background: rgba(100, 100, 100, 0.2); -webkit-transition: all 0.2s ease; -moz-transition: all 0.2s ease; -ms-transition: all 0.2s ease; -o-transition: all 0.2s ease; transition: all 0.2s ease; border-radius: 5px; font-size: 0.8em; }
|
||||
|
||||
.modal ul li:hover { background: rgba(150, 150, 150, 0.3); }
|
||||
|
||||
.modal h4 { margin-bottom: 38px; font-size: 1.2em; font-weight: 200; }
|
||||
|
||||
.modal-msg { background: rgba(34, 34, 34, 0.3); display: inline-block; margin: 100px auto; padding: 20px 40px; }
|
||||
|
||||
.modal-msg h5 { font-weight: 100; font-size: 0.85em; border-bottom: 3px solid rgba(204, 204, 204, 0.3); padding-bottom: 20px; }
|
||||
|
||||
.modal-msg span { font-size: 0.9em; font-weight: 200; }
|
||||
|
||||
.modal > .modal-footer { background: rgba(50, 50, 50, 0.3); }
|
||||
|
||||
.modal > .modal-footer .modal-close { font-size: .9em; text-transform: none; }
|
||||
|
||||
.waves-effect.waves-brown .waves-ripple { background-color: rgba(230, 230, 230, 0.3); }
|
||||
|
||||
.typed-cursor { display: none; }
|
||||
|
||||
@media only screen and (max-width: 768px) { .cover-2 h2, .cover-2 p { width: 100%; }
|
||||
.online-part { padding: 25% .7%; }
|
||||
.rule { padding: 15px; }
|
||||
.admins > ul > a { display: block; border-radius: 0; }
|
||||
.head-icon { width: 20px; height: 20px; margin-right: 0; float: left; border-radius: 50%; }
|
||||
.modal li { display: block; width: 100%; padding: 5px 70px; }
|
||||
.modal-msg { margin: 25px 0; padding: 5px; }
|
||||
.modal.modal-fixed-footer .modal-content { padding: 10px; } }
|
||||
/*# sourceMappingURL=main.css.map */
|
||||
|
|
7
css/main.css.map
Normal file
7
css/main.css.map
Normal file
File diff suppressed because one or more lines are too long
|
@ -209,7 +209,7 @@
|
|||
<div class="footer-copyright">
|
||||
<div class="container">
|
||||
<hr>
|
||||
TotalFreedom © 2010 - <span id="curYear"></span> <a class="grey-text text-lighten-4 right" href="https://twitter.com/maloukos1">Made by aggelosQQ</a>
|
||||
TotalFreedom © 2010 - <span id="curYear"></span> <a class="grey-text text-lighten-4 right" href="https://aggelosqq.github.io" target="_blank">Made by aggelosQQ</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -32,8 +32,8 @@ $(document).ready(function() {
|
|||
$(document).ready(function(){
|
||||
$(".one").click(function(){
|
||||
$(".a").fadeToggle(300);
|
||||
$(".one i").toggleClass("fa-chevron-right",1e3);
|
||||
$(".one i").toggleClass("fa-chevron-down",1e3)
|
||||
$(".one i").toggleClass("fa-chevron-right");
|
||||
$(".one i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
|
||||
$(".two").click(function(){
|
||||
|
@ -51,7 +51,7 @@ $(document).ready(function() {
|
|||
$(".four").click(function(){
|
||||
$(".d").fadeToggle(300);
|
||||
$(".four i").toggleClass("fa-chevron-right");
|
||||
$(".four i").toggleClass("fa-chevron-down")
|
||||
$(".four i").toggleClass("fa-chevron-down");
|
||||
});
|
||||
|
||||
$(".five").click(function(){
|
||||
|
|
|
@ -323,7 +323,7 @@
|
|||
<div class="footer-copyright">
|
||||
<div class="container">
|
||||
<hr> TotalFreedom © 2010 - <span id="curYear"></span>
|
||||
<a class="grey-text text-lighten-4 right" href="https://twitter.com/maloukos1">Made by aggelosQQ</a>
|
||||
<a class="grey-text text-lighten-4 right" href="https://aggelosqq.github.io" target="_blank">Made by aggelosQQ</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -125,7 +125,7 @@ i.rules-icon {
|
|||
font-size: 0.9em;
|
||||
}
|
||||
.admins>ul>a:hover {
|
||||
background: rgba(70, 70, 70, .15);
|
||||
background: rgba(30, 30, 30, .8);
|
||||
transform: translateY(-3px);
|
||||
}
|
||||
.admins ul {
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
<div class="container">
|
||||
<hr>
|
||||
TotalFreedom © 2012 - <span id="curYear"></span>.
|
||||
<a class="grey-text text-lighten-4 right" href="https://twitter.com/maloukos1">Made by aggelosQQ</a>
|
||||
<a class="grey-text text-lighten-4 right" href="https://aggelosqq.github.io" target="_blank">Made by aggelosQQ</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue