-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdetails-mini.css
195 lines (146 loc) · 2.72 KB
/
details-mini.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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
*{
margin:0;
padding:0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
.header {
min-height: 100vh;
width:100%;
background-color: rgb(152, 189, 223);
background-size: cover;
background-position: center;
}
.header p{
color: #fff;
font-size: 25px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
nav{
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 7%;
background: rgb(9, 25, 55);
}
.logo {
width: 140px;
cursor:pointer;
}
.nav-links li {
list-style: none;
display:inline-block;
margin:10px 32px;
}
.nav-links li a {
color: #fff;
text-decoration: none;
}
.register-btn{
background: #fff;
color:#000;
padding: 8px 20px;
border-radius: 20px;
text-decoration: none;
font-size: 14px;
}
.nav1{
display: flex;
align-items: center;
justify-content: space-evenly;
padding: 18px 30%;
white-space: nowrap;
}
.nav1 a{
font-size: 17px;
}
.container {
display: flex;
flex-wrap: wrap;
width: 100%;
margin: 0 auto;
align-items: center;
font-family: 'Bodoni MT';
}
.container img {
width: 40%;
height: auto;
object-fit: cover;
max-width: 100%;
margin-right: 20px;
margin-left: 40px;
}
.container h3 {
font-size: 30px;
font-family: 'Bodoni MT';
}
.container p {
font-size: 20px;
font-family: 'Bodoni MT';
}
.container a {
font-size: 20px;
font-family: 'Bodoni MT';
color:black;
}
.container h4 {
font-size: 22px;
font-family: 'Bodoni MT';
color:black;
}
.text-content {
width: 60%;
padding: 20px;
flex: 1;
font-family: 'Bodoni MT';
}
.text-content p {
margin-bottom: 10px;
font-family: 'Bodoni MT';
}
.ratings {
align-items: center;
margin-bottom: 10px;
font-family: 'Bodoni MT';
}
.ratings p:nth-child(1) {
margin-right: 10px;
font-weight: bold;
font-family: 'Bodoni MT';
}
.container h2{
margin-top: 5%;
margin-left: 5%;
font-size: 32px;
font-family: 'Bodoni MT';
color:black;
}
.container2 {
width: 80%;
margin: 0 auto;
padding: 20px;
border: 1px solid #ddd;
border-radius: 5px;
align-content: center;
}
.container2 h1 {
font-size: 27px;
text-align: center;
margin-bottom: 10px;
align-content: center;
font-family: 'Bodoni MT';
}
.container2 h2 {
text-align: center;
margin-bottom: 10px;
align-content: center;
font-family: 'Bodoni MT';
font-size: 23px;
}
.container2 p {
text-align: center;
margin-bottom: 10px;
align-content: center;
font-family: 'Bodoni MT';
color: rgb(9, 25, 55);
}