-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
119 lines (97 loc) · 1.43 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
body {
background-color: #EBE7E1;
font-size: 18px;
padding: 1em;
}
h1 {
margin-top: 0;
}
#page, #app {
max-width: 480px;
margin: 0 auto;
font-family: sans-serif;
}
.message {
padding: 0.75em;
margin-bottom: 1em;
overflow: auto;
border-radius: 8px;
break-inside: avoid;
}
.message {
background:#F9FAF9;
color: #000;
box-shadow: rgba(99, 99, 99, 0.404) 1px 1px 5px -2px;
}
.message.me {
background:#E1F6CA;
color: #000;
}
.message .lines {
word-wrap: break-word;
}
.message .media img,
.message .media video {
max-width: 100%;
height: auto;
}
.meta {
margin-top: 5px;
font-size: small;
opacity: 0.5;
}
.meta .username,
.meta .timestamp {
display: inline-block;
}
.meta .username {
float: left;
}
.meta .timestamp {
float: right;
}
.dateDivider {
text-align: center;
margin-bottom: 1em;;
}
.dateDivider .date {
font-size: small;
background-color: #c6c7e1;
border-radius: 10px;
padding: 3px 14px;
display: inline-block;
}
ul.pagination {
padding: 0;
list-style: none;
}
.pagination li {
display: inline-block;
}
.pagination .page-item,
button {
padding: 4px 8px;
margin: 2px;
border: solid 1px #ccc;
background: #eee;
cursor: pointer;
}
.pagination .page-item:hover,
button:hover {
background: #fff;
}
.pagination .active {
background: #f9f9f9;
}
.help {
font-size: small;
}
@media print{
.noprint{
display:none;
}
.message {
border: solid 1px #ccc;
box-shadow: none;
}
}