-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccommodation.css
109 lines (95 loc) · 1.84 KB
/
accommodation.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
body {
font-family: 'Noto Sans KR', sans-serif;
padding: 20px;
background-color: #f4f4f4;
}
h1 {
text-align: center;
margin-top: 50px;
}
form {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 10px;
}
label {
display: block;
margin-top: 30px;
margin-bottom: 5px;
}
input[type="text"], input[type="number"], textarea, input[type="date"], input[type="datetime-local"], input[type="file"] {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
box-sizing: border-box;
margin-bottom: 10px;
}
.grid-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.grid-item {
display: flex;
align-items: center;
}
input[type="checkbox"], input[type="radio"] {
margin-right: 10px;
}
button[type="submit"] {
display: block;
width: 100%;
padding: 10px;
background-color: #4CAF50;
color: #ffffff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
margin-top: 20px;
}
button[type="submit"]:hover {
background-color: #45a049;
}
.header {
background-color: #ffffff;
padding: 10px;
display: flex;
align-items: center;
justify-content: space-between;
color: #fff;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
height: 50px;
line-height: 60px;
}
.header .logo-container {
width: 90px;
height: 40px;
border-radius: 30%;
overflow: hidden;
}
.header .logo-container img {
width: 100%;
height: 100%;
object-fit: cover;
}
.nav-btn {
list-style-type: none;
margin: auto 5%;
display: flex;
gap: 10px;
font-size: 12px;
font-weight: bold;
}
.nav-btn a {
color: midnightblue;
text-decoration: none;
}