-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
181 lines (153 loc) · 2.71 KB
/
Copy pathstyle.css
File metadata and controls
181 lines (153 loc) · 2.71 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
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
/* for whole page */
* {
box-sizing: border-box;}
body {
font-family:sans-serif;
margin: 0px;
padding: 0px}
p, ul li{
line-height: 30px;
font-size: 18px;
font-family: Verdana,sans-serif;
text-align: justify!important;
}
html, body{
overflow-x: hidden;
overflow-x: hidden;
word-break: break-word;
}
/* for header */
.header{
padding: 5px 53px;
}
.header .logo img{
width: 25%;
}
/* for navigation bar */
.navbar {
overflow: hidden;
background-color: #0d75b4;
position: sticky;
top: 0px;}
.navbar ul{
margin: 0px;
list-style-type: none;
}
.navbar ul li {
display: inline-grid;
padding: 12px 20px;
}
.navbar ul li a {
color: white;
text-align: center;
text-decoration: none;}
.navbar ul li:hover {
background-color: #464444;
}
/* for main content */
.row {
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;}
.main {
-ms-flex: 70%;
flex: 70%;
background-color: white;
padding: 20px;}
.main h1{
text-align: center;
font-size: 50px;
color: #2d2d2d;
border-bottom: 5px dashed #0d75b4;
padding-bottom: 8px;
}
.main h2{
font-size: 35px;
color: #0d75b4;
}
.main .page-table{
overflow-x: auto;
}
.page-form{
padding: 5px 10px;
}
.page-form input, .page-form textarea{
width: 100%;
border: none;
margin-top: 10px;
}
.page-form{
background: #f1f1f1;
padding: 10px 30px;
margin: 30px 0px;
}
.page-form input{
width: 100%;
height: 35px;
font-size: 16px;
padding: 0px 5px;
}
.page-form button{
border: none;
background: #0d75b4;
padding: 7px 20px;
color: white;
font-size: 20px;
margin: 20px 0px;
}
.form-col{
-ms-flex: 48%;
flex: 48%;
padding: 10px;
}
/* for sidebar */
.sidebar {
-ms-flex: 30%;
flex: 30%;
padding: 20px;}
.about, .latest-post, .popular-post{
border: 1px solid lightgray;
padding: 10px 20px;
margin-top: 30px;
}
/* for footer */
.footer-col{
-ms-flex: 30%;
flex: 30%;
padding: 20px;
}
.footer{
background: #3f4b52;
width: 100%;
}
.footer h3{
color: white;
padding-left: 40px;
border-bottom: 2px dotted #537284;
padding-bottom: 10px;
text-transform: capitalize;
}
.footer ul{
list-style-type: none;
}
.footer ul li{
color: lightgray
}
@media screen and (max-width: 600px) {
.row {
flex-direction: column;
}
.header .logo img{
width: 100%;
}
.main h1{
font-size: 30px;
}
.main h2 {
font-size: 25px;
}
p, ul li {
font-size: 16px;
}
}