-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
54 lines (54 loc) · 951 Bytes
/
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
body {
font-family: Arial, "Lucida Grande", "Lucida Sans Unicode", sans-serif;
-webkit-font-smoothing: antialiased;
color: #636b70;
font-size: 16px;
line-height: 22px;
}
img {
display: inline-block;
margin-right: 20px;
vertical-align: top;
border-radius: 50px;
}
.text {
position: relative;
display: inline-block;
vertical-align: top;
background: #eeefeb;
width: calc(100% - 168px);
border-radius: 5px;
padding: 0 20px;
box-sizing: content-box;
}
.text:before {
content: '';
position: absolute;
top: 35px;
left: -15px;
width: 0;
height: 0;
border-style: solid;
border-width: 15px 15px 15px 0;
border-color: transparent #eeefeb transparent transparent;
}
small {
font-size: 12px;
}
a:link,
a:visited,
a:hover,
a:active,
a:focus {
font-weight: bold;
color: #6a9000;
text-decoration: none;
cursor: pointer;
}
a:hover,
a:focus {
text-decoration: underline;
}
a:visited {
color: #2c5100;
}