-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (99 loc) · 2.51 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
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');
.bg-container {
background-image: url("https://as1.ftcdn.net/v2/jpg/00/92/59/24/1000_F_92592498_ar5wkmWtnJirooXAyfrB3zZdXpsDWwlw.jpg");
height: 100vh;
background-size: cover;
}
.tourism-card {
text-align: center;
background-color: pink;
border-top-right-radius: 25px;
border-top-left-radius: 25px;
padding: 5px;
}
.main-heading {
color: purple;
font-family: "Caveat";
font-size: 55px;
font-style: italic;
font-weight: bold;
}
.paragraph {
color: grey;
}
.button {
height: 36px;
width: 138px;
background-color: #25b1cc;
color: white;
border-radius: 10px;
border-width: 0px;
}
.fav-plc-bg-container {
background-image: url("https://wallpaperaccess.com/full/185289.jpg");
background-size: cover;
height: 100vh;
}
.fav-plc-heading {
color: #ffffff;
padding: 18px;
}
.fav-plc-card-container {
background-color: #ffffff;
border-radius: 8px;
padding: 15px;
margin: 15px;
}
.fav-plc-card-heading {
color: #0f0e46;
font-family: "Roboto";
font-weight: bold;
font-size: 30px;
}
.fav-plc-card-description {
color: #6c6b70;
font-family: "Roboto";
font-size: 15px;
}
.fav-plc-card-image {
height: 138px;
width: 138px;
}
.detailed-view-bg-container {
background-image: url("https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/seabg.png");
background-size: cover;
height: 100vh;
}
.detailed-view-heading {
color: white;
font-family: "Roboto";
font-size: 30px;
font-weight: bold;
padding: 15px;
}
.detailed-view-card-container {
background-color: white;
border-bottom-left-radius: 8px;
border-bottom-right-radius: 8px;
margin: 25px;
}
.detailed-view-card-text-container {
padding: 20px;
}
.detailed-view-card-heading {
color: #0f0e46;
font-family: "Roboto";
font-size: 23px;
font-weight: bold;
}
.detailed-view-card-description {
color: #6c6b70;
font-family: "Roboto";
font-size: 15px;
}
.unordered-list {
list-style-type: square;
}
.ordered-list {
list-style-type: upper-latin;
}