-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
117 lines (100 loc) · 1.67 KB
/
styles.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
html {
height: 100%;
}
body {
background-color: #fff;
font-family: Lato, sans-serif;
margin:0;
height: 100%;
}
h1 {
position:fixed;
top:0px;
width: 100%;
display: block;
background-color: #2c2c34;
padding-left: 8px;
font-weight: 400;
font-size: 1.5em;
color:#cdcec9;
margin: 0px;
height: 42px;
padding-top: 8px;
}
/* a {
color:#6e9fe8;
} */
a:link, a:visited, a:hover, a:active {
color: #6e9fe8;
text-decoration: none;
}
ul{
list-style: none;
}
#messages {
background-color: #fff;
padding: 50px 0px 0px 0px;
margin: 0;
height: 100%;
}
#messages li {
border-top: 2px solid #f2f2f2;
padding: 24px 8px;
}
#messages a {
display: block;
margin-bottom: 10px;
}
#messages img {
display: block;
width:200px;
}
#gif-list {
display: block;
background-color: #2c2c34;
/* overflow:scroll; */
overflow-y: auto;
max-height: 300px;
padding: 8px 0px 0px 0px;
margin: 0;
position: fixed;
bottom: 50px;
left:8px;
width: 400px;
text-align: center;
}
#gif-list li {
width:120px;
display:inline-block;
}
#gif-list li img {
width:120px;
height: 82px;
cursor: pointer;
}
#gif-list li a {
text-align: center;
display: block;
}
#search-panel {
position: fixed;
display: block;
width:100%;
left: 0px;
bottom: 0px;
height: 50px;
background-color: #2c2c34;
}
#text-input {
margin-left: 8px;
margin-top:15px;
width:400px;
}
#error-panel{
background-color: bisque;
padding: 16px;
position:fixed;
bottom:50px;
right: 8px;
/* display: none; */
}