forked from ues-energydashboard/web-application
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
105 lines (85 loc) · 1.33 KB
/
main.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
body {
position: relative;
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
width: 800px;
margin: 0 auto;
padding: 10px;
color: #333;
}
.login-area {
font-size: 13px;
color: gray;
position: absolute;
top: 10px;
right: 10px;
}
.login-link {
color: gray;
text-decoration: none;
}
.login-link:visited {
color: gray;
}
.login-link:hover {
text-decoration: underline;
}
h2 {
font-size: 24px;
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;
color: #222;
font-size: 40px;
font-weight: bold;
text-align: center;
margin-bottom: 30px;
text-decoration: none;
}
.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: 0px;
bottom: 0px;
color: #999;
}
.post-content {
margin-top: 5px;
}