-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (76 loc) · 1.22 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
/*
Theme Name: Dev Theme
Theme URI: https://github.com/TechMainul-dev/devtheme
Author: Mainul Hasan Khan
Author URI: fb.com/TechMainul
Description: This is a dev theme depend on my first experience.
Version: 1.0.0
Text Domain: devtheme
*/
*{
margin: 0;
padding: 0;
}
.header-area{
background-color: rgb(35, 24, 105);
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.header-content{
text-align: center;
}
.logo{
}
.content{
color: rgb(192, 59, 10);
}
.dev-article{
padding: 20px 0;
}
.dev-article h2{
color: deeppink;
}
footer{
text-align: center;
background: darkolivegreen;
padding: 20px 0;
}
/* Post */
img{
width: 100%;
height: auto;
}
/* Sidebar */
.right-side{
padding: 25px 10px;
background: rgb(76, 82, 55);
}
.right-side h2{
color: gold;
}
.right-side ul li{
list-style: none;
}
/* Menu */
.menu ul{
list-style-type: none;
display: flex;
justify-content: center;
text-transform: uppercase;
}
.menu ul li a{
color: goldenrod;
padding: 10px 15px;
}
.menu ul li a:hover{
text-decoration: none;
color: greenyellow;
}
.bottom-menu{
color: goldenrod;
}
.search-field{
margin-bottom: 20px;
}