-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (103 loc) · 2.12 KB
/
style.css
File metadata and controls
112 lines (103 loc) · 2.12 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 {
padding: 20px;
background: linear-gradient(to right, #4A90E2, #1C1C1C); /* 漸變背景 */
background-attachment: fixed;
font-family: 'Arial', sans-serif;
color: #fff;
}
h1 {
font-size: 30px;
color: #fff;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.container {
background: rgba(255, 255, 255, 0.1); /* 半透明背景 */
border-radius: 15px;
padding: 20px;
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}
.col-room {
padding: 10px;
}
.col-edit {
height: 100vh;
overflow-y: scroll;
background: rgba(255, 255, 255, 0.15); /* 更淡的半透明背景 */
padding: 15px;
border-radius: 10px;
}
button.btn {
background-color: #4cbd41;
border: none;
padding: 10px 15px;
color: white;
font-weight: bold;
transition: 0.3s;
}
button.btn:hover {
background-color: #7f5ab1;
}
.room_edit {
margin-top: 30px;
background: rgba(255, 255, 255, 0.2); /* 讓編輯區塊更清晰 */
padding: 15px;
border-radius: 10px;
}
.cursor_pointer {
cursor: pointer;
}
.room_container {
box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
border-radius: 10px;
overflow: hidden;
}
.room_container .cover {
height: 150px;
background-size: cover;
background-position: center;
position: relative;
border-radius: 10px 10px 0 0;
}
.room_container .cover h3 {
position: absolute;
bottom: 10px;
font-size: 20px;
padding: 5px 15px;
background-color: rgba(0, 0, 0, 0.5);
color: white;
border-radius: 5px;
}
.room_container .cover i.fa.fa-times {
position: absolute;
top: 10px;
right: 10px;
color: rgb(255, 255, 255);
cursor: pointer;
transition: 0.5s;
}
.room_container .cover i.fa.fa-times:hover {
color: rgb(231, 49, 104);
}
.room_container .info {
padding: 10px;
}
.room_container .info h5 {
font-size: 14px;
color: #fff;
}
.room_container .info .final_price {
float: right;
color: rgb(255, 99, 71);
font-weight: bold;
}
.room_container .info .final_price:after {
content: "$";
}
.room_container .info .icons {
display: inline-block;
margin-left: 10px;
}
.room_container .info .icons span {
margin-right: 5px;
opacity: 0.6;
}/*# sourceMappingURL=style.css.map */