-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
57 lines (49 loc) · 919 Bytes
/
Copy pathindex.css
File metadata and controls
57 lines (49 loc) · 919 Bytes
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
body {
margin: 5%;
font-family: 'Gill Sans', 'Gill Sans MT';
display: grid;
justify-content: center;
}
.title {
color: #16697A;
text-align: center;
margin-bottom: 1em;
}
.entry-textbox {
background-color: #FFA62B;
width: 20em;
height: 10em;
padding: 1em;
margin-bottom: 0.5em;
border: unset;
border-radius: 25px;
}
.entry-textbox:focus {
outline: none;
box-shadow: 0px 0px 2px #000;
}
#entryForm .button {
border: unset;
border-radius: 25px;
padding: 5px 16px;
margin-left: 76%;
}
#entries {
background: #16697A;
color: #EDE7E3;
font-family: cursive;
padding: 2em;
max-width: 20em;
border: unset;
border-radius: 25px;
margin-top: 1em;
}
.entries-nav {
padding-bottom: 1em;
}
.display-entry-button {
margin: 0.2em;
}
.display-entry-button:hover {
cursor: pointer;
}