-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (81 loc) · 1.54 KB
/
style.css
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
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: rgb(231, 216, 228);
}
/* -------------- room.ejs -------------- */
h1 {
text-align: center;
@@ -11,7 +14,7 @@ h1 {
input {
width: 100%;
height: 30px;
height: 40px;
text-indent: 10px;
}
@@ -23,6 +26,8 @@ button {
font-size: larger;
font-weight: bold;
outline: none;
cursor: pointer;
border: none;
}
.fields {
@@ -49,4 +54,68 @@ button {
#output, #feedback {
margin-left: 10px;
}
.online {
height: 100vh;
width: 300px;
position: absolute;
left: 0px;
top: 0px;
background-color: rgb(110, 103, 103);
}
.online .users-online {
background-color: rgb(110, 103, 103);
color: white;
text-align: center;
font-size: 40px;
font-weight: bolder;
}
.users {
margin-left: 40px;
margin-top: 50px;
}
.users p {
background-color: rgb(110, 103, 103);
color: white;
}
/* -------------- index.ejs -------------- */
.content {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.content p {
font-size: 40px;
font-weight: 700;
margin-bottom: 40px;
}
.content input {
margin-bottom: 20px;
height: 50px;
border: 1px solid black;
border-radius: 7px;
}
.content input[type="submit"] {
cursor: pointer;
}
::placeholder {
font-weight: 700;
}
.content div {
border: 2px solid black;
padding: 70px;
border-radius: 25px;
}