-
Notifications
You must be signed in to change notification settings - Fork 0
/
blogstyle.css
111 lines (96 loc) · 1.52 KB
/
blogstyle.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
body {
font-family: Arial, sans-serif;
color: #333;
background-color: #e6e6e6;
}
a {
color: #0077be;
font-size: 1rem;
}
h1 {
font-size: 2rem;
color: #0077be;
text-align: center;
}
form {
width: 500px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
box-shadow: 0 2px 4px grey;
}
label {
display: block;
font-size: 1.4rem;
margin-bottom: 10px;
}
input[type="text"],
textarea {
width: 100%;
padding: 5px;
font-size: 1.2rem;
margin-bottom: 20px;
box-shadow: 0 2px 4px grey;
border: none;
background-color: #f3f3f3;
}
input[type="submit"] {
width: 100%;
padding: 10px;
font-size: 18px;
background-color: #0077be;
color: #fff;
border: none;
cursor: pointer;
border-radius: 5px;
}
.entry {
width: 50%;
background-color: #fff;
padding: 10px;
margin-bottom: 20px;
box-shadow: 0 2px 4px grey;
border-radius: 10px;
}
.entry h2 {
font-size: 1.6rem;
color: #0077be;
margin-bottom: 10px;
}
.entry p {
font-size: 1.2rem;
margin-bottom: 10px;
text-align: justify;
}
.entry .date {
font-size: .8rem;
color: #999;
}
.load-more {
width: 500px;
margin: 0 auto;
text-align: center;
}
.load-more button {
padding: 10px 20px;
background-color: #0077be;
color: #fff;
border: none;
cursor: pointer;
}
#liker, #sharer, #viewer {
cursor: pointer;
text-decoration: underline;
}
.stats {
text-align: left;
font-size: .8rem;
color: blue;
width: 30%;
box-shadow: 0px 4px 8px grey;
}
.content {
font-size: 1.1rem;
padding: 8px 4px;
text-align: justify;
}