-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
128 lines (111 loc) · 2.41 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
125
126
127
128
body {
background-image: url("./img/gamingpage.jpg");
background-repeat: no-repeat;
background-size: cover;
/* backdrop-filter: blur(4px); */
background-attachment: fixed;
}
.container {
margin-left: auto;
margin-right: auto;
width: 1024px;
}
a {
font-size: 20px;
}
/* navigation bar designing */
nav {
background-color: rgba(0, 0, 0, 0.41);
padding-top: 14px;
padding-bottom: 14px;
text-align: center;
color: rgb(180, 140, 140);
width: fit-content;
margin: auto;
}
nav a {
text-decoration: none;
color: white;
font-size: 22px;
padding-left: 10px;
padding-right: 10px;
margin: 0 1vw;
}
nav a:hover {
color: yellow;
}
/* social media link designing */
#logo {
margin: auto;
width: fit-content;
margin-top: 2vh;
}
#logo a {
margin: 0 0.4vw;
}
/* main body designing */
main {
height: 470px;
margin-top: 50px;
text-align: center;
padding-left: 240px;
padding-right: 240px;
}
#actual-timings {
width: fit-content;
margin: auto;
margin-top: 3vh;
padding: 1vh 1vw;
}
h1 {
font-size: 60px;
color: rgb(186, 185, 185);
font-family: "Merriweather", serif;
border-radius: 6px;
}
p {
font-size: 18px;
color: white;
font-family: "Libre Baskerville", serif;
padding: 1.5vh 1vw;
border-radius: 5px;
background-color: rgba(0, 0, 0, 0.4);
}
h2 {
margin: auto;
margin-top: 5vh;
color: white;
background-color: rgb(0, 0, 0);
width: fit-content;
padding: 1vh 1vw;
border-radius: 5px;
box-shadow: 0 0 5px 2px black;
}
h2:hover {
background-color: rgb(50, 50, 50);
box-shadow: 0 0 5px 2px rgb(50, 50, 50);
}
#make-reservation {
text-decoration: none;
width: 300px;
border-radius: 5px;
background-color: rgba(0, 0, 0, 0.4);
}
/* footer designing */
footer {
height: 25px;
text-align: center;
}
footer a {
font-size: 22px;
padding: 12px 12px;
color: white;
text-decoration: none;
margin-left: 25px;
margin-right: 25px;
background-color: rgba(0, 0, 0, 0.4);
border-radius: 5px;
}
footer a:hover {
background-color: rgb(0, 0, 0);
}