-
Notifications
You must be signed in to change notification settings - Fork 1
/
lunch.css
99 lines (83 loc) · 1.38 KB
/
lunch.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
/* CSS styling for the Lunch Hub website */
/* Global styles */
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
margin: 0;
}
/* Header styles */
.topnav {
background-color: #343541;
overflow: hidden;
}
.topnav a {
float: left;
color: whitesmoke;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: whitesmoke;
color: #343541;
}
.active {
background-color: #4CAF50;
color: whitesmoke;
}
.logo {
font-weight: bold;
font-size: 24px;
}
/* Main content styles */
h1 {
text-align: center;
margin-top: 30px;
}
#website-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 30px;
}
iframe {
width: 100%;
height: 600px;
border: none;
}
#api-data {
text-align: center;
margin-top: 30px;
}
#menu p {
font-size: 18px;
margin: 10px 0;
}
.tab {
overflow: hidden;
border-bottom: 1px solid #ccc;
background-color: white;
}
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 12px 14px;
transition: 0.3s;
font-size: 17px;
}
.tab button:hover {
background-color: #ddd;
}
.tab button.active {
background-color: blue;
}
.tabcontent {
display: block;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
}
.tablinks:focus {border-bottom:1.5px solid blue;}