diff --git a/css/main.css b/css/main.css index 66b48de..8d461ee 100644 --- a/css/main.css +++ b/css/main.css @@ -217,4 +217,23 @@ i.rules-icon:hover { float: left; margin-right: 5px; border-radius: 50%; +} +.modal { + background: rgba(0,0,0,0.5); + color: #ccc; +} +.modal a { + color: rgb(200,200,200); +} +.modal ul { + -webkit-column-count: 3; + -moz-column-count: 3; + column-count: 3; + display: inline-block; +} +.modal h4 { + margin-bottom: 38px; +} +.modal > .modal-footer { + background: rgba(50,50,50,0.6); } \ No newline at end of file diff --git a/index.html b/index.html index 2e5c065..800fc52 100644 --- a/index.html +++ b/index.html @@ -56,20 +56,16 @@ -

TotalFreedom Rules

diff --git a/js/admins.js b/js/admins.js deleted file mode 100644 index fd24a30..0000000 --- a/js/admins.js +++ /dev/null @@ -1,25 +0,0 @@ -var parseArray = function (array, type) { - var result = ""; - - if (type == "developers") { - for (var i in array) { - var append = " - "; - - if (array[i] == "Madgeek1450") { - append += "TFM Creator"; - } else if (array[i] == "Prozza") { - append += "Lead Developer"; - } else { - append += "Developer"; - } - - result += "
  • " + array[i] + append + "
  • " - } - - } else { - for (var i in array) { - result += "
  • " + array[i] + "
  • " - } - } - return result; -}; \ No newline at end of file