-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreceita.css
More file actions
76 lines (74 loc) · 1.17 KB
/
receita.css
File metadata and controls
76 lines (74 loc) · 1.17 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
body{
background-color:#F5F0DC;
font-family: Helvetica, Arial, sans-serif;
width: 940px;
margin: auto;
}
#titulo{
text-align: center;
}
h2{
background:-webkit-linear-gradient(top, #9C8F67, #C7BE9B 30%);
padding: 5px;
color:#000000;
border-radius: 5px;
border: 1px solid black;
}
#tb-nutrientes{
border: 1px solid black;
width: 40%;
margin: auto;
}
#tb-nutrientes tr{
background-color: #F8EA6B;
}
#tb-nutrientes tr:nth-child(odd){
background-color: #FFFFFF;
}
#tb-nutrientes tr:nth-child(even){
background-color: #F8EAB3;
}
figure{
background-color:white;
width:800px;
text-align:center;
padding:15px;
font-family:'Comics Sans MS', cursive;
border:1px solid black;
box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.7);
}
a{
color:black;
text-decoration:none;
}
a:hover{
text-decoration:underline;
}
figure:hover{
-webkit-transform:rotate(-5deg);
}
nav{
float: left;
width:200px;
}
#conteudo{
float: right;
width:740px;
}
nav ul li{
background: #C7BE9B;
padding: 3px;
margin-bottom:5px;
}
nav ul{
list-style : none;
padding-left:0;
}
nav ul li:hover{
background-color:#9C8F67;
}
#banner{
top:0;
right:0;
position: fixed;
}