-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
115 lines (98 loc) · 1.67 KB
/
index.css
File metadata and controls
115 lines (98 loc) · 1.67 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
body {
background-color: white;
}
header {
background-color: transparent;
padding: 30px;
text-align: center;
}
.uno {
color: black;
padding-top: 50px;
padding-left: 25px;
font-size: 35px;
}
.dos {
color: black;
padding-top: 35px;
padding-left: 25px;
font-size: 22px;
width: 50%;
line-height: 1.6;
}
.titulo {
text-align: center;
color: black;
padding-top: 50px;
font-size: 35px;
}
.texto {
color: black;
margin-left: 25%;
margin-right: 25%;
padding-top: 35px;
font-size: 22px;
width: 50%;
line-height: 1.6;
}
.embaixo {
background-color: rgb(104, 101, 101);
padding: 10px;
text-align: center;
color: white;
}
.btn {
display: block;
margin: auto;
margin-bottom: 8%;
margin-top: 8%;
padding: 1%;
background-color: rgb(80, 153, 80);
border: none;
transition: 300ms;
}
.btn:hover {
background-color: green;
cursor: pointer;
border-radius: 10px;
}
a {
text-decoration: none;
}
div.gallery {
border: 1px solid #ccc;
margin-bottom: 15%;
margin-top: 10%;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
color: black;
background-color: #adff2f;
}
* {
box-sizing: border-box;
}
.responsive {
padding: 0 6px;
float: left;
width: 24.99999%;
}
@media only screen and (max-width: 700px) {
.responsive {
width: 49.99999%;
margin: 6px 0;
}
}
@media only screen and (max-width: 500px) {
.responsive {
width: 100%;
}
}