forked from vsoch/tw-jekyll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
103 lines (86 loc) · 1.62 KB
/
main.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
[class*=language-] {
border-radius: 10px !important;
}
.docs article .callout {
margin-left: 0rem !important;
margin-right: -2rem;
}
.btn-blue {
background-color: #405cf5;
}
.btn-red {
background-color: #e31616;
}
.btn-green {
background-color: #2ea44f;
}
.btn-yellow {
background-color: #ffca35;
}
.btn-orange {
background-color: darkorange;
}
.btn-purple {
background-color: #8b5cf6;
}
.btn-pink {
background-color: #EA4C89;
}
.btn {
border-radius: 8px;
border-style: none;
box-sizing: border-box;
color: #FFFFFF;
cursor: pointer;
display: inline-block;
font-family: "Haas Grot Text R Web", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
font-weight: 500;
height: 40px;
line-height: 20px;
list-style: none;
margin: 0;
outline: none;
padding: 10px 16px;
position: relative;
text-align: center;
text-decoration: none;
transition: color 100ms;
vertical-align: baseline;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
.btn:hover,
.btn:focus {
background-color: #F7F7F7;
color: #333;
}
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic);
blockquote{
font-family:Open Sans;
font-style:italic;
color: #555555;
padding:1.2em 30px 0.2em 25px;
border-left:8px solid #CCC ;
line-height:1.6;
position: relative;
}
blockquote::before{
font-family:Arial;
color:#78C0A8;
font-size:4em;
position: absolute;
left: 10px;
top:-10px;
}
blockquote::after{
content: '';
}
blockquote span{
display:block;
color:#333333;
font-style: normal;
font-weight: bold;
margin-top:1em;
}