-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
130 lines (98 loc) · 1.61 KB
/
main.css
File metadata and controls
130 lines (98 loc) · 1.61 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
body {
position: relative;
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
width: 800px;
margin: 0 auto;
padding: 10px;
color: #151515;
background-color: #EFF5F8;
}
#wrapper {
background-color: #FFFFFF;
width: 100%;
min-width: 740px;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
}
h1 {
background-color: #aaa;
color: #888;
margin: 0;
height: 50px;
}
h2 {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
h3 {
font-size: 20px;
font-weight: bold;
margin-bottom: 20px;
}
.error {
color: red;
}
label {
display: block;
font-size: 20px;
}
label + label {
margin-top: 20px;
}
input[type=text] {
width: 500px;
font-size: 20px;
padding: 2px;
font-family: monospace;
}
textarea {
width: 500px;
height: 400px;
font-size: 17px;
font-family: monospace;
}
input[type=submit] {
font-size: 24px;
}
.main-title {
display: block;
font-size: 40px;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
text-decoration: none;
color:#FFFFFF;
background-color: #43A6CB;
padding: 4px;
}
.post + .post {
margin-top: 15px;
}
.post-heading {
position: relative;
border-bottom: 3px solid #666;
}
.post-title {
font-size: 24px;
font-weight: bold;
}
.post-date {
position: absolute;
right: 10px;
top:10px;
color: #999;
}
.post-content {
margin-top: 5px;
}
footer {
clear: left;
padding-top: 2px;
padding-bottom: 2px;
padding-left: 2%;
background-color: #43A6CB;
color: #FFFFFF;
}