forked from PriyaGhosal/BuddyTrail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
update discussion forum
88 lines (88 loc) · 2.62 KB
/
update discussion forum
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
<html>
<head>
<title>Travel Discussion Forum</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #d0e7ff;
}
.container {
text-align: center;
padding: 50px;
}
.title {
font-size: 36px;
font-weight: bold;
color: #0056d2;
margin-bottom: 50px;
}
.categories {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
}
.category {
background-color: white;
padding: 20px 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
font-size: 18px;
color: #0056d2;
font-weight: bold;
cursor: pointer;
transition: transform 0.2s, background-color 0.2s;
}
.category:hover {
transform: translateY(-10px);
background-color: #0056d2;
color: white;
}
.floating-buttons {
position: fixed;
bottom: 20px;
right: 20px;
display: flex;
flex-direction: column;
gap: 10px;
}
.floating-button {
background-color: #007bff;
color: white;
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
cursor: pointer;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
transition: background-color 0.2s;
}
.floating-button:hover {
background-color: #0056d2;
}
</style>
</head>
<body>
<div class="container">
<div class="title">Travel Discussion Forum</div>
<div class="categories">
<div class="category">Destinations</div>
<div class="category">Travel Planning</div>
<div class="category">Travel Experiences</div>
<div class="category">Travel Gear</div>
<div class="category">Travel Safety</div>
<div class="category">Sustainable Travel</div>
</div>
</div>
<div class="floating-buttons">
<button class="floating-button"><i class="fas fa-arrow-up"></i></button>
<button class="floating-button"><i class="fas fa-camera"></i></button>
</div>
</body>
</html>