-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (96 loc) · 1.57 KB
/
style.css
File metadata and controls
112 lines (96 loc) · 1.57 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
body {
background-color: #2E5D38; /* Restored to green */
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
.container {
background-color: #EAF4E1;
padding: 30px;
border-radius: 10px;
width: 50%;
margin: auto;
}
.featured {
text-align: left;
margin-bottom: 20px;
}
.featured h2, .featured p {
margin: 0 0 10px 0;
}
.discover-btn {
background-color: white;
color: #2E5D38;
border: 2px solid #2E5D38;
padding: 10px 15px;
cursor: pointer;
border-radius: 5px;
text-align: center;
}
.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.space {
background-color: white;
border-radius: 8px;
padding: 15px;
text-align: left;
position: relative;
}
.space img {
width: 100%;
height: 150px;
object-fit: cover;
border-radius: 8px;
}
.like-icon {
position: absolute;
top: 10px;
right: 10px;
color: grey;
font-size: 20px;
margin-top: 180px;
}
h3 {
margin-top: 10px;
}
.info-section {
margin-top: 10px;
}
.workstation i, .workstation .lines {
border: 1px solid #2E5D38;
padding: 2px;
background: white;
color: #2E5D38;
display: inline-block;
}
.workstation .green-text {
color: #2E5D38;
}
.icon-text i {
background-color: #2E5D38;
color: white;
padding: 5px;
border-radius: 3px;
margin-right: 5px;
}
.price {
font-weight: bold;
color: #2E5D38;
}
.full-plan {
color: #2E5D38;
text-decoration: none;
font-weight: bold;
}
.book-btn {
background-color: #2E5D38;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
border-radius: 5px;
width: 100%;
}