-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (74 loc) · 1.23 KB
/
styles.css
File metadata and controls
78 lines (74 loc) · 1.23 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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
/* base styles */
body {
background: #eee;
font-family: 'Roboto';
color: #444;
max-width: 960px;
margin: 100px auto;
padding: 10px;
}
/* body button {
color: white;
text-decoration: none;
background: #36cca2;
padding: 5px;
border-radius: 10px;
width: 100px;
} */
nav {
display: flex;
justify-content: space-between;
}
nav h1 {
margin: 0;
}
nav a {
color: white;
text-decoration: none;
background: #36cca2;
padding: 10px;
border-radius: 10px;
/* box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); */
}
form {
max-width: 500px;
}
form input {
width: 100%;
}
/* form button {
/* /* color: rgb(255, 255, 255);
text-decoration: none;
background: #36cca2;
padding: 12px; */
/* border-radius: 8px;
width: 13%;
} */
input, textarea {
display: block;
margin: 16px 0;
padding: 6px 10px;
width: 100%;
border: 1px solid #ddd;
font-family: 'Roboto';
}
textarea {
min-height:200px;
}
/* post list */
.post {
padding: 16px;
background: white;
border-radius: 10px;
margin: 20px 0;
}
.post h2 {
margin: 0;
}
.post p {
margin-top: 0;
}
.post a {
color: #36cca2;
}