-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcafe1.css
More file actions
114 lines (112 loc) · 2.14 KB
/
cafe1.css
File metadata and controls
114 lines (112 loc) · 2.14 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
body {
font-family: "Poppins", sans-serif;
font-size: 16px;
line-height: 22px;
background-color: rgb(249, 253, 131);
color: #222;
}
.main {
width: 1170px;
margin: 100px auto;
}
.section-title {
text-align: center;
margin-bottom: 80px;
}
.section-title h2 {
text-transform: capitalize;
font-size: 35px;
position: relative;
display: inline-block;
padding-bottom: 20px;
margin-bottom: 10px;
}
.section-title h2:before {
content: "";
position: absolute;
width: 60px;
height: 3px;
background-color: rgb(63, 176, 237);
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.menus {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.menu-column {
width: 31%;
}
.menu-column h4 {
text-transform: capitalize;
font-size: 24px;
font-weight: 500;
margin-bottom: 20px;
position: relative;
padding-bottom: 10px;
}
.menu-column h4:before {
content: "";
position: absolute;
width: 40px;
height: 2px;
background-color: rgb(63, 176, 237);
bottom: 0;
}
.single-menu {
display: flex;
align-items: center;
margin-top: 40px;
}
.single-menu img {
border-radius: 50%;
max-width: 110px;
border: 1px dashed #ddd;
padding: 3px;
margin-right: 15px;
transition: .3s;
}
.single-menu:hover img{
transform: rotate(360deg);
}
.single-menu .menu-content h5 {
text-transform: capitalize;
font-size: 22px;
font-weight: 500;
border-bottom: 1px dashed #222;
padding-bottom: 5px;
margin-bottom: 10px;
}
.single-menu .menu-content h5 span {
color: tomato;
float: right;
font-weight: 600;
font-style: italic;
}
.reviews{
display: flex;
justify-content: space-around;
margin-bottom: 5%;
}
.review{
box-shadow: 5px 5px 5px 5px;
color: rgb(169, 168, 168);
}
.review h2{
margin: 5%;
color: black;
}
.review span{
margin: 5%;
}
.checked {
color: orange;
}