-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
122 lines (118 loc) · 1.96 KB
/
main.css
File metadata and controls
122 lines (118 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
* {
margin: 0;
padding: 0;
}
body {
font: 13px Helvetica, Arial;
background-color: white;
display: flex;
flex-direction: column;
height: 100% ;
}
form {
bottom: 0;
width: 100%;
}
form input {
border: 0;
padding: 10px;
width: 90%;
margin-right: .5%;
}
form button {
width: 9%;
background: rgb(130, 224, 255);
border: none;
padding: 10px;
}
#messages {
list-style-type: none;
margin: 0;
padding: 0;
}
#messages li {
padding: 5px 10px;
}
#messages li:nth-child(odd) {
background: white;
}
#messages li:nth-child(even) {
background: lightgrey;
}
#messages {
margin-bottom: 40px
}
#top{
order: 1;
color: Orange;
text-align: center;
width: 100%;
background-color: lightslategrey;
font-size: 4em;
height: 10%;
}
#main{
order: 2;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
text-align: center;
background-color: black;
display: none;
}
#left{
order: 1;
width: 80%;
height: 100%;
max-height: 300px;
border-right: 1em black solid;
text-align: left;
background-color: white;
float: left;
overflow-y:auto;
}
#right{
order: 2;
background-color: aquamarine;
width: 20%;
height: 100%;
}
.info{
order: 1;
width: 99%;
background-color: black;
color: white;
padding-left: 1%;
padding-top: 1em;
}
.LRcontain{
order: 2;
width: 97%;
display: flex;
flex-direction: row;
border:1em black solid;
background-color: white;
}
.input{
order:3;
background-color: grey;
}
#m{
border: 0.5em grey solid;
width: 97%;
}
#foot{
background-color: black;
color: darkorange;
padding: 1%;
order: 5;
}
#getNick{
order: 2;
width: 100%;
text-align: center;
}
#form > #getNick{
width: 60%;
}