-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
109 lines (87 loc) · 1.4 KB
/
index.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
105
106
107
108
109
* {
color: black;
margin: 0;
padding: 0;
}
/* nav */
nav {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
border: 3px solid black;
padding: 20px;
}
nav > h3 {
padding-left: 20px;
}
nav > div {
padding-right: 20px;
}
.divNav {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.link {
cursor: pointer;
}
/* ***************** */
#dateTime {
display: flex;
justify-content: flex-end;
padding: 20px;
}
/* ***************** */
#body {
display: flex;
flex-direction: column;
align-items: center;
}
/* ***************** */
.books {
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 20px;
}
#form {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 12px;
}
#addBook,
button,
input {
border: 3px solid black;
}
#addBook {
margin: 30px 0;
width: 50%;
}
.remove {
margin: 10px;
}
p {
display: flex;
align-items: center;
margin-left: 20px;
}
.books:nth-child(even) { background: #ccc; }
.books:nth-child(odd) { background: #fff; }
#contactBook {
display: flex;
flex-direction: column;
justify-content: flex-start;
gap: 20px;
}
#contactBook > div > p {
margin: 0;
}
#contactBook > ul {
margin-left: 30px;
}
.hide {
display: none;
}