-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (109 loc) · 1.76 KB
/
style.css
File metadata and controls
123 lines (109 loc) · 1.76 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
#imageup{
width: 120px;
align-content: right;
}
body {
background-color: rgb(65,18,24);
color: white;
font-family: 'Segoe UI';
}
h1{text-align: center;}
p {text-align: center;}
#navbar{
background-color: rgb(65,18,24);
}
.my_image {
display: block;
margin-left: auto;
margin-right: auto;
width: 360px;
transition: transform .2s;
}
.my_image:hover {
-ms-transform: scale(1.5);
-webkit-transform: scale(1.5);
transform: scale(1.5);
}
.login {
width: 300px;
height: 250px;
/* Center vertically and horizontally */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#login {
border-radius: 25px;
background: rgba(232,152,46);
padding: 20px;
font-size: 25px;
text-align: center;
}
.footer {
background-color: rgb(65,18,24);
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
}
.lside{
float: left;
width: 82%;
}
.rside{
width: 18%;
float: left;
}
.my_image img {
position: absolute;
top: 0px;
right: 0px;
}
.chat{
background-color: rgb(232,152,46);
border-radius: 6px;
}
#chat{
overflow: auto;
height: 500px;
border: 2px solid rgb(232,152,46);
border-radius: 12px;
padding: 5px;
background-color: rgb(65,18,24);
}
#userlikenolike{
border: 2px solid rgb(232,152,46);
background-color: rgb(232,152,46);
border-radius: 12px;
}
#LIKE{
size: A3;
}
#DISLIKE{
size: A3;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(65,18,24);
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: rgb(221,184,144);
}
#navbar ul {
display: inline-block;
list-style-type: none;
}