-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (85 loc) · 1.45 KB
/
style.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
*{
text-align: center;
}
body{
margin: 0px;
padding: 8% 10%;
background-color: aquamarine;
background-image: url(imagens/TuboMexPipe.JPG);
background-size: 100%;
}
header{
display: flex;
justify-content: space-between;
background-color: red;
margin: 0 0 25px 0;
}
/*Barra de Navegação*/
nav{
background-color: aqua;
}
nav ul{
list-style: none;
text-align: center;
padding: 0;
margin: 0;
}
nav ul li{
display: inline-block;
margin: 0px;
padding: 10px;
border-left: solid;
border-right: solid;
}
/*Imagem Principal*/
.main_pic_div{
background-color: black;
margin: 0 0 15px 0;
height: 300px;
}
.main_pic{
width: 100%;
height: auto;
}
.recent_pics{
background-color: rgb(18, 18, 53);
/* styling */
border: 1px solid #ddd;
border-radius: 4px;
box-shad
}
/*Fotos Recentes*/
.recent_pics h2{
text-align: left;
margin: 0;
padding: 10px;
background-color: white;
text-transform: uppercase;
font-size: medium;
}
.recent_pics ul{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0; /* por default a ul tem margin e padding */
padding: 0;
}
.recent_pics ul li{
/*positioning*/
list-style-type: none;
background-color: rgb(87, 133, 173);
margin: 1.5% 2%;
display: block;
width: 100px;
height: 75px;
text-align: center;
/* styling */
border: 1px solid #ddd;
border-radius: 4px;
}
.recent_pics ul:first-child{
margin-left: 0%;
}
.recent_pics ul:last-child{
margin-right: 0%;
}