-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (72 loc) · 1.46 KB
/
style.css
File metadata and controls
90 lines (72 loc) · 1.46 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
body {
font-family: Hiragino Kaku Gothic Pro;
}
.content {
width: 100%;
overflow-x: hidden;
}
.message{
display: flex;
flex-direction: row;
width: 60%;
padding: 10px 10px;
margin: 10px 20%;
}
.message .bold{
font-weight: bold;
}
.message .oblique{
font-style: oblique;
}
.message .line{
text-decoration: line-through;
}
.message:hover {
background-color: #f9f9f9;
}
.message .avater{
height: 100%;
min-height: 48px;
min-width: 48px;
max-width: 48px;
margin: 0 10px;
background-color:#ffffff;
}
.message .container{
display: flex;
flex-direction: column;
word-break: break-all;
}
.message .container .header {
font-weight: bold;
}
.side_bar {
position: fixed; /* スクロールしても位置を固定 */
padding: 100px 0;
width: 20%;
height: auto;
float: left;
background-color: #4a3a4a;
}
.side_bar .name {
display: flex;
flex-direction: column;
padding: 2% 10%;
color: #c9c4c9;
}
.side_bar .container {
display: flex;
flex-direction: column;
padding: 2px 10%;
}
.side_bar .container#current {
background-color: #5e9489;
}
.side_bar .container#current a { color: #ffffff; }
.side_bar .container:hover {
background-color: #3c2f3c;
}
.side_bar .container a {
text-decoration: none;
}
.side_bar .container a { color: #c9c4c9; }