forked from Skycosta/proj_integrado_3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
151 lines (124 loc) · 2.38 KB
/
Copy pathstyle.css
File metadata and controls
151 lines (124 loc) · 2.38 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
margin-top: 200px;
}
#menu-lateral {
position: fixed;
left: 0;
top: 0;
width: 270px;
height: 900px;
background-color: #5978E5;
color: #fff;
padding: 20px;
box-sizing: border-box;
text-align: center;
}
#menu-lateral nav span {
font-size: 1.5em;
font-weight: bold;
display: block;
margin-bottom: 20px;
}
#menu-lateral nav a {
color: #fff;
text-decoration: none;
display: block;
margin-bottom: 30px;
}
#menu-lateral nav ul {
list-style-type: none;
padding: 0;
margin: 0;
}
#menu-lateral nav ul button {
background: none;
border: none;
color: #fff;
cursor: pointer;
padding: 5px 10px;
margin-bottom: 5px;
width: 100%;
text-align: center;
}
#menu-lateral nav ul button:hover {
background-color: #2980b9;
}
#menu-lateral .imagem {
width: 200px;
height: auto;
justify-content: center;
align-items: center;
}
.imagem-atendente {
width: 100px;
height: auto;
display: block;
margin: 0 auto 15px auto;
border-radius: 50%;
overflow: hidden;
}
main {
margin-left: 250px;
padding: 20px;
display: flex;
}
main section {
flex: 1;
margin-right: 20px;
}
main button {
background: none;
border: none;
cursor: pointer;
padding: 0;
text-align: left;
}
main button img {
margin-right: 10px;
}
footer {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
text-align: right;
}
.logo-footer {
width: 100px;
height: auto;
margin-right: 20px;
margin-bottom: 10px;
}
.botao-section {
display: flex;
justify-content: space-around;
}
.botao-section button {
width: 255px;
height: 157px;
background-color: #f2f2f2;
border: none;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
padding: 10px;
}
.botao-section button img {
width: 55px;
height: auto;
}
.botao-section button h1,
.botao-section button h2 {
margin: 10px 0;
}
.botao-section a{
text-decoration: none;
}
.botao-section a:hover {
text-decoration: underline;
}