-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfavourites.css
128 lines (111 loc) · 1.75 KB
/
favourites.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
* {
font-family: "Proxima Vara, Arial, Arial, Helvetica, sans-serif";
letter-spacing: 2px;
}
#navbar {
top: 0;
left: 0;
right: 0;
position: fixed;
display: flex;
border-bottom: 1px solid rgb(202, 200, 200);
height: 70px;
z-index: 1;
background-color: white;
}
#navbar div {
width: 50%;
}
#navbar div img {
width: 125px;
margin-top: auto;
margin-bottom: auto;
height: 100%;
padding-left: 30px;
}
#navlist {
display: flex;
justify-content: flex-end;
}
#navlist a {
text-decoration: none;
color: black;
padding-top: 25px;
padding-left: 30px;
padding-right: 25px;
white-space: nowrap;
font-size: 15px;
}
#navlist a:hover {
background-color: rgb(243, 243, 243);
}
#top {
width: 500px;
margin: 120px 0px 0px 32%;
}
.book {
padding: 10px;
text-align: center;
color: white;
font-weight: 700;
background-color: #007cc2;
border: none;
border-radius: 10px;
margin-top: 40px;
width: 130px;
height: 50px;
cursor: pointer;
}
#top h1 {
line-height: 2px;
}
#top p {
font-size: 17px;
}
#top img {
width: 100%;
}
#top button {
height: 45px;
width: 150px;
font-weight: bold;
color: white;
border: none;
background-color: #007cc2;
border-radius: 9px;
font-size: 17px;
}
#activity {
margin: 30px 0px 0px 32%;
}
#activity p {
font-size: 17px;
font-weight: 700;
}
#list {
border: 1px solid black;
}
#items {
width: 70%;
display: grid;
row-gap: 20px;
align-items: center;
}
#items > div {
padding: 10px 20px 10px 20px;
border-radius: 10px;
background-color: whitesmoke;
display: flex;
gap: 40px;
}
#items #info {
font-weight: initial;
color: #007cc2;
font-size: 18px;
line-height: 7px;
}
#items img {
height: 90px;
border-radius: 10px;
margin-top: 20px;
}