v2 / examples / veb / websocket / assets / style.css
41 lines · 39 sloc · 668 bytes · 01fd719116f84ae22ee570188df6a26464b8268f
Raw
1html {
2 box-sizing: border-box;
3}
4*, *:before, *:after {
5 box-sizing: inherit;
6}
7body {
8 padding: 0px;
9 margin: 0px;
10 margin-left: 30px;
11 margin-right: 30px;
12}
13
14#message-list {
15 width: 100%;
16 height: 250px;
17 padding: 5px;
18 box-sizing: border-box;
19 margin: 0px;
20 margin-bottom: 5px;
21 border: 1px solid lightgray;
22 overflow-y: scroll;
23 overscroll-behavior-y: contain;
24 scroll-snap-type: y proximity;
25}
26#message-list > li {
27 list-style-type: none;
28}
29#message-list > li:last-child {
30 scroll-snap-align: end;
31 border-top: 1px solid #eeeeff !important;
32}
33
34#message-input {
35 width: 100%;
36 margin: 0px;
37 padding: 0px;
38 font-size: 24px;
39 line-height: 1;
40 font-weight: 600;
41}
42