forked from persianphilosopher/press-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_theme.scss
More file actions
100 lines (85 loc) · 1.16 KB
/
_theme.scss
File metadata and controls
100 lines (85 loc) · 1.16 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
91
92
93
94
95
96
97
98
99
100
h1,
h2,
h3,
h4,
h5,
h6,
section > p,
header > p {
text-align:center;
}
h1,
h2 {
font-weight:lighter;
}
h1 {
margin:0;
padding:0;
font-size:3.25em;
}
h2 {
font-size:2.5em;
}
section > p,
header > p {
width:60%;
margin: 1em auto;
}
@media screen and (max-width:1200px) {
section > p,
header > p {
width:70%;
}
}
header {
padding-top:10vh;
border-bottom: solid 1px #E0E0E0;
padding-bottom:2.5em;
margin-bottom:2.5em;
}
@media screen and (max-width:800px) {
section > p {
width:100%;
}
}
.card {
background-color: #FFF;
padding:1em;
transition: box-shadow 0.15s linear;
}
.card:hover {
box-shadow: 2px 3px 19px -3px rgba(0, 0, 0, 0.4);
}
.text-center {
text-align:center;
}
.effects-example > button {
margin-bottom:1em;
}
.classname {
padding-bottom:.5em;
border-bottom:solid 1px #E0E0E0;
}
pre {
max-width:60%;
margin:0 auto;
}
@media screen and (max-width:1200px) {
pre {
max-width:75%;
}
}
@media screen and (max-width:1000px) {
pre {
max-width:80%;
}
}
@media screen and (max-width:800px) {
pre {
max-width:90%;
}
}
pre[class*="language-"],
code[class*="language-"]{
border:none;
}