-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
190 lines (164 loc) · 3.56 KB
/
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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
/*!
Theme Name: Sleekly
Theme URI: http://underscores.me/
Author: Sukhendu Sekhar Guria
Author URI: https://github.com/Sukhendu2002
Description: Simple minimal blogging theme
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: sleekly
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
Sleekly is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
#primary-menu {
transition: display 0.5 ease-in-out;
}
.widget_search label {
display: none;
}
.widget_search input[type="search"] {
/*width: 100%;*/
padding: 0.5rem;
border: 1px solid #a8a8a8;
border-radius: 5px;
}
.widget_search input[type="search"]:focus {
outline: none;
border-color: #000;
}
.widget_search button {
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 5px;
cursor: pointer;
background-color: #000;
color: #fff;
}
.wp-block-heading{
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.7rem;
margin-top: 1rem;
}
.wp-block-latest-posts li {
display: flex;
align-items: center;
margin-bottom: 1rem;
}
.wp-block-latest-posts li::before {
content: "\2022";
margin-right: 0.5rem;
}
.wp-block-archives li {
display: flex;
align-items: center;
margin-bottom: 1rem;
}
.wp-block-archives li::before {
content: "\2022";
margin-right: 0.5rem;
}
.wp-block-archives li a:hover {
text-decoration: underline;
}.wp-block-latest-posts li a:hover {
text-decoration: underline;
}
.wp-block-categories li {
display: flex;
align-items: center;
}
.wp-block-categories li::before {
content: "\2022";
margin-right: 0.5rem;
}
.wp-block-categories li a:hover {
text-decoration: underline;
}
.comment-body{
margin-bottom: 1rem;
}
.comment-meta{
display: flex;
align-items: center;
font-size: 0.8rem;
color: #a8a8a8;
}
.comment-body img {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 1rem;
}
.comment-reply-link {
font-size: 0.8rem;
color: #a8a8a8;
text-decoration: underline;
cursor: pointer;
}
.comment-reply-title{
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.7rem;
margin-top: 1rem;
}
.comment-reply-title form{
margin-top: 1rem;
}
.comment-form-comment{
display: flex;
flex-direction: column;
}
.comment-form-comment textarea{
padding: 0.5rem;
border: 1px solid #a8a8a8;
border-radius: 5px;
margin-bottom: 1rem;
height: 100px;
}
.comment-form .form-submit input[type="submit"]{
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 5px;
cursor: pointer;
background-color: #000;
color: #fff;
}
.comment-form-author input[type="text"], .comment-form-email input[type="email"], .comment-form-url input[type="url"]{
padding: 0.5rem;
border: 1px solid #a8a8a8;
border-radius: 5px;
margin-bottom: 0.7rem;
}
.comment-form-cookies-consent{
margin-bottom: 1rem;
}
.search-form input[type="search"] {
padding: 0.5rem;
border: 1px solid #a8a8a8;
border-radius: 5px;
outline: none;
border-color: #000;
}
.search-form input[type="submit"] {
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 5px;
cursor: pointer;
background-color: #000;
color: #fff;
}
.social-icons svg {
width: 40px;
height: 40px;
margin-right: 0.5rem;
cursor: pointer;
border-radius: 50%;
}