-
Notifications
You must be signed in to change notification settings - Fork 2
/
sobreNos.css
129 lines (110 loc) · 2.1 KB
/
sobreNos.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Lato", sans-serif;
font-weight: 400;
font-style: normal;
}
body {
height: 100vh;
background-color: #5b3731;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
}
#cabecalho {
display: flex;
flex-direction: row;
text-align: center;
justify-content: space-between;
background-color: #fff;
width: 100%;
height: 100px;
padding: 0 30px;
position: absolute;
}
#cabecalho #logo {
display: flex;
margin: 10px;
}
#links {
display: flex;
flex-direction: row;
text-align: center;
justify-content: center;
margin: auto 0;
}
#links a {
text-decoration: none;
color: #5B3731;
margin-left: 10px;
}
#content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: auto 0;
}
#sobreNos {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
#card {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 300px;
width: 500px;
background-color: #fff;
margin: 10px;
padding: 200px;
text-align: center;
border-radius: 20px;
padding: 20px;
border: 1px solid #ccc;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
}
#card h1 {
top: 0;
background-color: #ffffff;
margin: 0;
padding: 10px ;
border-radius: 8px ;
font-size: 20px;
font-weight: 700;
}
#card p {
font-size: 15px;
line-height: 1.5;
margin-top: 20px;
text-align: justify;
}
#rodape {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 50px;
background-color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
margin-top: 30px;
}
#rodape h1 {
font-size: 15px;
}
#rodape h1 span {
font-weight: 700;
}