-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path1style.css
More file actions
101 lines (85 loc) · 1.38 KB
/
1style.css
File metadata and controls
101 lines (85 loc) · 1.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
/* CSS do cabeçalho */
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
header{
position: fixed;
left: 0;
top: 0;
width: 100%;
background-color: #ffffff;
display: flex;
justify-content: space-around;
align-items: center;
}
.logo-imagem img{
width: 120px;
height: 120px;
}
.container-logo{
display: flex;
align-items: center;
}
.logo-texto{
margin-left: 20px;
color: rgb(169 126 66);
}
.menu li{
display: inline-block ;
margin: 0 10px;
}
.menu li a{
font-size: 20px;
text-decoration: none;
color: rgb(169 126 66);
padding: 5px 5px;
}
.login{
display: inline-block;
margin-left: 20px;
}
.login button{
font-size: 20px;
text-decoration: none;
color: rgb(169 126 66);
}
#criar{
padding: 5px 10px;
background-color:#ffffff;
border-radius: 10px;
}
#criar:hover{
background-color: rgb(219, 219, 219)
}
#entrar{
margin-left: 10px;
padding: 10px 15px;
background-color:rgb(169 126 66);
color: #ffffff;
border-radius: 10px;
}
#entrar:hover{
background-color:burlywood;
}
@media screen and (max-device-width:500px) {
header{
background-color: white;
}
.menu ul{
display: grid;
}
.menu li a{
display: grid;
font-size: 90%;
}
.login{
margin-right: 15px;
width: 50%;
}
#entrar{
margin-left: 16px ;
margin-top: 10px;
}
}