-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (85 loc) · 1.45 KB
/
style.css
File metadata and controls
105 lines (85 loc) · 1.45 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
*,::after,::before {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.img {
width: 100%;
display: block;
object-fit: cover;
}
body {
padding: 2rem 2rem;
line-height: 1.2rem;
font-family: Georgia, 'Times New Roman', Times, serif;
}
main {
display: grid;
place-items: center;
}
#section {
width: 90vw;
max-width: 1170px;
padding: 1.2rem;
}
.title {
text-align: center;
margin-bottom: 2.5rem;
}
.title-info {
margin-top: 1.2rem;
}
.address-container {
display: grid;
grid-template-columns: 1fr 1fr;
place-items: center;
}
.address {
margin: 1rem;
}
.add-info {
color: #555;
}
.address i {
margin: 1rem;
}
.img-map {
width: 100%;
height: 100%;
padding: 1rem;
margin: 1.2rem;
border-radius: 1.5rem;
}
.form {
width: 100%;
max-width: 1170px;
margin: 1rem;
padding: 1rem;
}
input {
height: 2.5rem;
margin-bottom: 1rem;
border-radius: 0.5rem;
border: 1px solid rgba(0, 0, 0, 0.1);
}
textarea {
width: 92%;
height: 7rem;
margin-bottom: 1.2rem;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 0.5rem;
}
.btn {
color: #fff;
background: #00a189;
border: transparent;
padding: .75rem 0.95rem;
border-radius: 0.25rem;
transition: all 0.3s linear;
cursor: pointer;
}
.btn:hover {
background-color: transparent;
color: #00a189;
border: 2px solid #00a189;
}