-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
178 lines (150 loc) · 2.22 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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
main {
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
height: 100vh;
}
h2,
h1 {
text-align: center;
}
nav {
border: 3px solid #000;
display: flex;
justify-content: space-between;
width: 95vw;
height: auto;
margin: 0;
padding: 5px;
}
#top-nav {
display: flex;
align-items: center;
padding-right: 10px;
height: auto;
margin: 0;
}
#con-link1 a,
#con-link2 a {
border-right: 2px solid;
}
#top-nav li a {
color: #000;
font-size: 20px;
font-weight: lighter;
padding: 5px;
text-decoration: none;
}
#top-nav li.active a {
color: blue;
border-color: #000;
}
ul {
list-style: none;
}
#top-header {
font-weight: lighter;
display: flex;
align-items: center;
margin: 0;
}
#add {
width: 50%;
height: 70vh;
}
.contacts h2 {
font-size: xx-large;
}
#add h2 {
font-size: xx-large;
}
.all-book li {
display: flex;
justify-content: space-between;
list-style: none;
margin: 0;
width: auto;
padding: 10px;
gap: 10px;
}
.all-book li .title {
font-weight: 600;
}
#all-book {
width: 96vw;
height: 70vh;
}
#all-book h2 {
font-size: xx-large;
}
.all-book {
padding: 0;
border: 3px solid #000;
}
.all-book li:nth-child(odd) {
background-color: rgb(222, 222, 222);
}
#formAdd {
height: auto;
display: flex;
flex-direction: column;
align-items: flex-end;
justify-content: flex-start;
gap: 2px;
padding: 50px;
}
#formAdd input {
margin: 0;
border: 3px solid;
width: 100%;
padding: 10px;
}
button {
border-radius: 0;
}
hr {
border-bottom: 2px solid #000;
width: 10%;
}
footer p {
color: #000;
font-size: 20px;
font-weight: lighter;
padding: 9px;
border: 3px solid;
width: 95vw;
}
#date {
width: 96vw;
display: flex;
justify-content: flex-end;
align-items: center;
}
.Rbtn {
background-color: #fff;
border: 3px solid;
padding: 3px 12px;
box-shadow: 2px 2px 1px;
}
.btn {
border: 3px solid;
margin-top: 30px;
padding: 3px 12px;
box-shadow: 2px 2px 1px;
}
#contacts-ul {
list-style-type: disc;
margin-left: 30px;
}
.contacts {
height: 70vh;
width: 96vw;
display: flex;
align-items: center;
flex-direction: column;
}
.show {
display: none;
}