Skip to content
Permalink
Newer
Older
100644 111 lines (93 sloc) 1.53 KB
Mar 19, 2020
1
/*
2
Theme Name: My Custom Theme
3
Theme URI: https://yourwebsite.com
4
Author: Your Name
5
Author URI: https://yourwebsite.com
6
Description: This is my first custom theme!
7
Version: 1.0.0
8
License: GNU General Public License v2 or later
9
License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
Text Domain: my-custom-theme
11
Tags: custom-background
12
*/
Mar 19, 2020
13
14
body {
15
width: 960px;
16
margin: auto;
17
line-height: 1.65;
Mar 19, 2020
18
font-family: Georgia, Times, Times New Roman, serif;
Mar 19, 2020
19
}
20
21
h1,
22
h2,
23
h3,
24
h4,
25
h5,
26
h6,
27
.menu {
28
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
29
}
30
31
a {
32
color: #073979;
33
}
34
35
.site-header {
36
border-bottom: 2px solid
37
}
38
39
.site-title {
40
font-size: 2rem;
41
font-weight: bold;
42
margin-bottom: .25rem;
43
line-height: 1;
44
}
45
46
.site-title a {
47
text-decoration: none;
48
color: black
49
}
50
51
.site-description {
52
margin-top: 0;
53
color: #8e8e8e;
54
}
55
56
.menu {
57
border-top: 1px solid #ccc;
58
}
59
60
.menu ul {
61
list-style: none;
62
padding: 0;
63
}
64
65
.menu ul li a {
66
text-decoration: none;
67
color: #696969;
68
}
69
70
.menu ul li a:hover {
71
text-decoration: underline;
72
color: #000;
73
}
74
75
.site-content {
76
width: 640px;
77
float: left;
78
}
79
80
article {
81
margin-top: 2rem;
82
margin-bottom: 2rem;
83
}
84
85
.sidebar {
86
width: 280px;
87
float: left;
88
list-style: none;
89
margin-top: 2em;
Mar 19, 2020
90
font-size: 14px
Mar 19, 2020
91
}
92
93
.widgettitle {
94
border-top: 2px solid;
95
border-bottom: 1px solid #ccc;
Mar 19, 2020
96
padding: .25rem 0;
97
font-size: 1.25rem
Mar 19, 2020
98
}
99
100
.widget {
101
margin-bottom: 3rem
102
}
103
104
label {
105
display: block
106
}
107
108
.commentlist {
109
list-style: none;
110
padding-left: 0;
111
}