-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.css
108 lines (92 loc) · 1.45 KB
/
base.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
html, body {
margin: 0;
}
body {
background-color: #f1f1f1;
display: flex;
justify-content: center;
}
p{
text-indent: 30px;
font-size: medium;
text-align: left;
}
.content h2,h1{
text-align: center;
}
.wrapper {
width: 100vw;
display: flex;
margin: 0 auto;
background-color: #D9F5FF;
}
.main {
display: flex;
flex-flow: column;
width: 85%;
}
.menu {
width: 15%;
background-color: #FFD7DF;
padding: 20px 20px 0px;
}
.menu ul{
display: grid;
gap: 15px;
}
.header {
max-height: 150px;
width: 83vw;
overflow: hidden; /* oculta qualquer parte da imagem que não caiba na div */
position: relative;
}
.content {
display: grid;
min-height: 300px;
padding: 40px 120px;
align-items: center;
justify-content: center;
}
.contact{
display: flex;
padding: 50px;
align-items: center;
justify-content: center;
gap: 80px;
}
.location{
width: 280px;
}
form{
display: grid;
align-items: center;
justify-content: center;
gap: 20px;
}
.forms{
display: flex;
align-items: top;
justify-content: left;
gap: 10px;
}
table{
display: flex;
justify-content: center;
text-align: center;
}
th{
padding: 15px 25px;
}
td{
padding-right: 20px;
}
.footer {
display: flex;
gap: 20px;
align-items: center;
justify-content: center;
}
.footer img{
height: 150px;
max-height: 150px;
}