-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
143 lines (120 loc) · 1.75 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
body {
margin: 0;
top: 0;
}
.books {
border: 1px solid gray;
background-color: aliceblue;
margin: auto 50px;
}
h1 {
font-size: 30px;
font-weight: bold;
text-align: center;
margin: 0;
padding: 5px;
}
.new-book {
margin: auto 50px;
justify-content: center;
display: flex;
}
.btn {
margin-left: 185px;
margin-top: -8px;
background-color: green;
color: #fff;
width: 60px;
border: none;
}
input {
margin-top: 10px;
width: 350px;
}
.list-items {
display: flex;
justify-content: space-between;
}
ul {
list-style-type: none;
}
.remove {
width: 78px;
color: #fff;
background-color: red;
border: none;
margin-right: 29px;
margin-top: 14px;
padding: 3px;
height: 22px;
}
nav {
display: flex;
justify-content: space-between;
border: 2px solid gray;
margin: 0 10px;
}
h1 a {
text-decoration: none;
color: black;
font-size: 30px;
}
.nav-items {
display: flex;
}
.nav-items:focus {
color: rgb(48, 48, 241);
}
.nav-items li a {
text-decoration: none;
padding-right: 5px;
margin-right: 5px;
color: black;
}
.nav-items li a:active {
color: blue;
}
.nav-item-1,
.nav-item-2 {
border-right: 2px solid gray;
}
.time {
display: flex;
justify-content: end;
padding: 5px 1px;
margin-right: 10px;
}
.contact {
text-align: center;
margin: 45px 0;
gap: 20px;
display: none;
flex-direction: column;
}
.contact p {
margin-left: 50px;
}
.footer {
border: 1px solid gray;
margin: 10px 10px;
padding: 5px 10px;
}
footer {
padding: 5px 10px;
bottom: 0;
position: fixed;
width: 97.7%;
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
.form-element {
display: flex;
flex-direction: column;
align-items: flex-end;
}
.display {
display: none;
}