-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (77 loc) · 1.14 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
header, main {
width: 50vw;
margin: auto;
}
header h1 {
display: inline;
}
header a {
float: right;
margin-top: 15px;
}
header h3 {
color: gray;
}
header a, main a {
color: blue;
text-decoration: none;
}
header a:hover, main a:hover {
color: darkblue;
text-decoration: underline;
}
article {
border-bottom: 1px solid lightgrey;
}
article h3 {
display: inline-block;
margin-bottom: 10px;
}
article h3.date, article h3.action {
float: right;
color: gray;
}
article h3.action a {
color: gray;
}
article h3.action a.edit {
margin-right: 20px;
}
article h3.title a {
color: black;
text-decoration: none;
}
article h3.title a:hover {
color: blue;
text-decoration: underline;
}
form {
margin: 20px 0;
}
input, textarea {
margin: 5px 0;
padding: 10px;
width: 100%;
border: 2px solid black;
border-radius: 10px;
font-size: 18px;
box-sizing: border-box;
}
form button {
width: 100px;
height: 40px;
margin-top: 10px;
font-size: 14px;
font-weight: bold;
}
form button:hover {
cursor: pointer;
}
p.error {
color: red;
font-size: small;
margin: 0 0 10px 5px;
}
p.success {
color: green;
}