wiinet is ready™️
hopefully, after over a year of development, it will have been worth the wait
This commit is contained in:
parent
14db80ee8c
commit
e364b9143f
650 changed files with 53461 additions and 49 deletions
143
css/chat.css
Normal file
143
css/chat.css
Normal file
|
|
@ -0,0 +1,143 @@
|
|||
body {
|
||||
background-color: #B40AFD;
|
||||
color: black;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
form {
|
||||
padding: 15px 25px;
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
form label {
|
||||
font-size: 1.5rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
input {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0000ff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
#wrapper,
|
||||
#loginform {
|
||||
margin: 0 auto;
|
||||
padding-bottom: 25px;
|
||||
background: #eee;
|
||||
width: 600px;
|
||||
max-width: 100%;
|
||||
border: 2px solid #212121;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
#loginform {
|
||||
padding-top: 18px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#loginform p {
|
||||
padding: 15px 25px;
|
||||
font-size: 1.4rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#chatbox {
|
||||
text-align: left;
|
||||
margin: 0 auto;
|
||||
margin-bottom: 25px;
|
||||
padding: 10px;
|
||||
background: #fff;
|
||||
height: 300px;
|
||||
width: 530px;
|
||||
border: 1px solid #a7a7a7;
|
||||
overflow: auto;
|
||||
border-radius: 4px;
|
||||
border-bottom: 4px solid #a7a7a7;
|
||||
}
|
||||
|
||||
#usermsg {
|
||||
flex: 1;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #ff9800;
|
||||
}
|
||||
|
||||
#name {
|
||||
border-radius: 4px;
|
||||
border: 1px solid #ff9800;
|
||||
padding: 2px 8px;
|
||||
}
|
||||
|
||||
#submitmsg,
|
||||
#enter{
|
||||
background: #ff9800;
|
||||
border: 2px solid #e65100;
|
||||
color: white;
|
||||
padding: 4px 10px;
|
||||
font-weight: bold;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.error {
|
||||
color: #ff0000;
|
||||
}
|
||||
|
||||
#menu {
|
||||
padding: 15px 25px;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
#menu p.welcome {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
a#exit {
|
||||
color: white;
|
||||
background: #c62828;
|
||||
padding: 4px 8px;
|
||||
border-radius: 4px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.msgln {
|
||||
margin: 0 0 5px 0;
|
||||
}
|
||||
|
||||
.msgln span.left-info {
|
||||
color: orangered;
|
||||
}
|
||||
|
||||
.msgln span.chat-time {
|
||||
color: #666;
|
||||
font-size: 60%;
|
||||
vertical-align: super;
|
||||
}
|
||||
|
||||
.msgln b.user-name, .msgln b.user-name-left {
|
||||
font-weight: bold;
|
||||
background: #546e7a;
|
||||
color: white;
|
||||
padding: 2px 4px;
|
||||
font-size: 90%;
|
||||
border-radius: 4px;
|
||||
margin: 0 5px 0 0;
|
||||
}
|
||||
|
||||
.msgln b.user-name-left {
|
||||
background: orangered;
|
||||
}
|
||||
12
css/convert.css
Normal file
12
css/convert.css
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
body {
|
||||
background-color: #BA00FF;
|
||||
color: white;
|
||||
background-image:url('../img/gradient.png');
|
||||
background-position: top;
|
||||
background-repeat: no-repeat;
|
||||
margin: 0px;
|
||||
padding: 10px;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
}
|
||||
10
css/credits.css
Normal file
10
css/credits.css
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
body, html {
|
||||
color: white;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
background-position: top;
|
||||
background-repeat: no-repeat;
|
||||
background-image:url('../img/bannersmol.png');
|
||||
background-color: #BA00FF;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
17
css/games.css
Normal file
17
css/games.css
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
body {
|
||||
background-color: #BA00FF;
|
||||
color: white;
|
||||
background-image:url('../img/games/GamesHeader.png');
|
||||
background-position: top;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
button {
|
||||
background-color: #BA00FF;
|
||||
color: white;
|
||||
font-size: 24px;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
10
css/home.css
Normal file
10
css/home.css
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
body {
|
||||
background-color: #B40AFD;
|
||||
color: white;
|
||||
background-image:url('../img/bannersmol.png');
|
||||
background-position: top;
|
||||
background-repeat: no-repeat;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
}
|
||||
a { font-weight:bold;text-decoration:none;color:white; }
|
||||
32
css/landing.css
Normal file
32
css/landing.css
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
html, body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
html {
|
||||
background-color: rgb(180, 10, 253);
|
||||
color: white;
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
}
|
||||
h1 {
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
text-decoration: none;
|
||||
}
|
||||
.main-card {
|
||||
margin: auto;
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
width: 1000px;
|
||||
padding: 30px;
|
||||
}
|
||||
.main-card-content {
|
||||
font-size: 24px;
|
||||
}
|
||||
.socials {
|
||||
padding-top: 100px;
|
||||
text-align: center;
|
||||
font-size: 42px;
|
||||
}
|
||||
15
css/media.css
Normal file
15
css/media.css
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
body {
|
||||
background-color: #BA00FF;
|
||||
color: white;
|
||||
background-image:url('../img/media/MediaHeader.png');
|
||||
background-position: top;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
table {
|
||||
margin: auto;
|
||||
}
|
||||
15
css/others.css
Normal file
15
css/others.css
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
body {
|
||||
background-color: #B40AFD;
|
||||
color: white;
|
||||
background-image:url('../img/others/OthersHeader.png');
|
||||
background-position: top;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
table {
|
||||
margin: auto;
|
||||
}
|
||||
15
css/utilities.css
Normal file
15
css/utilities.css
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
body {
|
||||
background-color: #BA00FF;
|
||||
color: white;
|
||||
background-image:url('../img/utilities/UtilsHeader.png');
|
||||
background-position: top;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
a {
|
||||
color: white;
|
||||
text-decoration:none;
|
||||
font-weight:bold;
|
||||
}
|
||||
table {
|
||||
margin: auto;
|
||||
}
|
||||
21
css/videos.css
Normal file
21
css/videos.css
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
body {
|
||||
background-color: #BA00FF;
|
||||
color: white;
|
||||
background-image:url('../img/gradient.png');
|
||||
background-position: top;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
a {
|
||||
text-decoration: none;
|
||||
color:white;
|
||||
font-weight:bold;
|
||||
}
|
||||
h1,h2 {
|
||||
margin: 0px;
|
||||
}
|
||||
table {
|
||||
margin: auto;
|
||||
}
|
||||
div.videotitle {
|
||||
text-align:center;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue