This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
151 lines (149 loc) · 2.93 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
.container{
display: grid;
height: 100%;
width: 100%;
grid-template-columns: 20% 60% 20%;
grid-template-rows: 100%;
}
.maincontainer{
text-align: center;
background-color: white;
border-radius: 4px;
display: table;
height: 100%;
}
.rightcontainer,.leftcontainer{
text-align: center;
}
body{
background-color: rgb(45, 149, 209);
font-family: 'Architects Daughter';
font-size: large;
}
button,.button,#submit{
font-family: 'Architects Daughter';
font-size: large;
border-radius: 4px;
transition: 0.3s;
box-shadow: -3px 3px rgb(136, 133, 133);
background-color: rgb(71, 173, 233);
border: none;
color: white;
padding: 6px 6px;
text-align: center;
text-decoration: none;
}
button:hover,.button:hover,#submit:hover{
background-color: rgb(45, 149, 209);
}
input{
font-family: 'Architects Daughter';
font-size: large;
}
button:active,.button:active,#submit:active{
background-color: rgb(45, 149, 209);
box-shadow: -3px 3px rgb(136, 133, 133);
transform: translate(-1px,1px);
}
table{
display: inline-table;
}
td.label{
text-align: right;
width: 50%;
}
td.input{
text-align: left;
width: 50%;
}
form#loginform,form#registerform{
background-color: rgb(116, 202, 252);
padding: 10px;
border-radius: 5px;
display: inline-block;
width: 45%;
}
.fholder{
display: table-cell;
vertical-align: middle;
}
div#messages{
overflow-y:auto;
width: 100%;
height: 87%;
background-image: url("back.jpg");
border-radius: 4px;
background-position: center;
}
.messageother{
width: 100%;
text-align: left;
}
.messageself{
width: 100%;
text-align: right;
}
.msg{
max-width: 500px;
background-color: white;
border-radius: 5px;
padding: 5px;
margin: 10px;
text-align: left;
}
.msgself{
max-width: 500px;
background-color: rgb(183, 255, 189);
border-radius: 5px;
padding: 5px;
margin: 10px;
display: inline-block;
text-align: left;
}
.txt{
font-family: sans-serif;
font-size: large;
display: inline-block;
padding: 2px;
}
.sender{
font-size: smaller;
display: inline-block;
color: rgb(58, 113, 177);
}
.senderself{
font-size: smaller;
display: inline-block;
color: rgb(58, 116, 63);
}
.time{
font-size: smaller;
display: inline-block;
color: rgb(58, 113, 177);
}
.timeself{
font-size: smaller;
display: inline-block;
color: rgb(58, 116, 63);
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: rgba(104, 104, 104, 0.473);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: rgba(45, 149, 209, 0.473);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: rgb(45, 149, 209);
}
textarea{
outline: none;
font-family: 'Architects Daughter';
font-size: large;
border: 1px solid rgb(45, 149, 209);
border-radius: 7px;
}