-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfp.css
More file actions
118 lines (105 loc) · 2.31 KB
/
fp.css
File metadata and controls
118 lines (105 loc) · 2.31 KB
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
/* Global Styles */
body {
font-family: 'Poppins', sans-serif;
text-align: center;
margin: 0; /* Ensure no extra margin */
padding: 0;
background: linear-gradient(to bottom, #F5E6CC, #D9A96D);
color: rgb(75, 42, 23);
overflow-x: hidden;
}
/* Header Section */
header {
background: linear-gradient(to right, #9C6035, #ed983d);
border-radius: 10% 10% 15% 15%;
padding: 3px; /* Ensure proper spacing */
box-shadow: 0px 0px 3px rgba(242, 242, 246, 0.9);
margin: 0; /* Remove any extra margin */
width: 100%;
position: relative;
top: 0;
left: 0;
}
/* Stylish Café Title */
h1 {
font-family: 'Lobster', cursive;
font-size: 85px;
color: #edede9;
text-shadow:
0 0 5px #ff9900,
0 0 10px #ff6600;
}
p {
font-size: 30px;
color: #e74500;
}
/* Container */
.container {
padding: 50px 20px;
}
/* Tabs Container */
.tabs {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
}
/* Individual Tabs */
.tab {
width: 240px;
height: 320px;
background: rgba(255, 255, 255, 0.85);
text-decoration: none;
color: rgb(85, 41, 20);
font-size: 22px;
font-weight: bold;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 40px;
border-radius: 25px;
transition: all 0.4s ease-in-out;
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
backdrop-filter: blur(5px);
position: relative;
overflow: hidden;
}
/* Tab Images */
.tab img {
width: 100%;
height: 220px;
object-fit: cover;
border-radius: 15px;
}
/* Hover Effect */
.tab:hover {
transform: scale(1.1);
box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
background: linear-gradient(to bottom, #D98324, #9C6035);
color: white;
}
/* Add Decorative Shapes */
.tab::before {
content: "";
position: absolute;
width: 80px;
height: 80px;
background: rgba(255, 255, 255, 0.2);
top: -10px;
left: -10px;
border-radius: 50%;
}
.tab::after {
content: "";
position: absolute;
width: 60px;
height: 60px;
background: rgba(255, 255, 255, 0.2);
bottom: -10px;
right: -10px;
border-radius: 50%;
}
.menu-section {
display: none; /* Hide all sections initially */
}