-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
150 lines (131 loc) · 5.01 KB
/
index.html
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IPTI</title>
<style>
@font-face {
font-family: "Futura-LT-W01-Book";
src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/8bf38806-3423-4080-b38f-d08542f7e4ac.woff2") format("woff2"),
url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/e2b9cbeb-fa8e-41cd-8a6a-46044b29ba52.woff") format("woff");
font-display: block;
}
@font-face {
font-family: "Futura-LT-W05-Book";
src: url("//static.parastorage.com/services/santa-resources/resources/viewer/user-site-fonts/fonts/Futura_Complete/v1/FuturaLTW05-Book.woff2") format("woff2");
font-display: block;
}
@font-face {
font-display: block;
font-family: wf_9a8bd484dc534b7b9d2ae41bf;
src: url("https://static.wixstatic.com/ufonts/b0f925_9a8bd484dc534b7b9d2ae41bf8d38e76/woff2/file.woff2") format("woff2"),
url("https://static.wixstatic.com/ufonts/b0f925_9a8bd484dc534b7b9d2ae41bf8d38e76/woff/file.woff") format("woff"),
url("https://static.wixstatic.com/ufonts/b0f925_9a8bd484dc534b7b9d2ae41bf8d38e76/ttf/file.ttf") format("ttf");
}
@font-face {
font-family: "Futura-LT-W01-Light";
src: url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/26091050-06ef-4fd5-b199-21b27c0ed85e.woff2") format("woff2"),
url("//static.parastorage.com/services/third-party/fonts/user-site-fonts/fonts/cca525a8-ad89-43ae-aced-bcb49fb271dc.woff") format("woff");
font-display: block;
}
@font-face {
font-family: "Futura-LT-W05-Light";
src: url("//static.parastorage.com/services/santa-resources/resources/viewer/user-site-fonts/fonts/Futura_Complete/v1/FuturaLTW05-LightCondensed.woff2") format("woff2"),
url("//static.parastorage.com/services/santa-resources/resources/viewer/user-site-fonts/fonts/Futura_Complete/v1/FuturaLTW05-LightCondensed.woff") format("woff");
font-display: block;
}
.container {
display: flex;
justify-content: space-around;
align-items: center;
width: 100%;
height: 100vh;
font-family: Futura-LT-W01-Book;
}
.text-title {
font-family: wf_9a8bd484dc534b7b9d2ae41bf;
font-size: 64px;
color: #55a333;
}
.text-paragraph {
color: #414141;
font-size: 18px;
margin: 20px 0;
}
.button {
color: #ffffff;
background-color: #55a333;
border: 2px solid #55a333;
border-radius: 50px;
text-decoration: none;
display: inline-block;
text-align: center;
width: 100%;
padding: 5px 0;
font-weight: bolder;
transition: background-color 0.5s ease, color 0.3s ease;
}
.button:hover {
background-color: #323232;
}
.gif {
max-width: 600px;
}
.text-green {
color:#55a333;
}
@media (max-width: 1120px) {
.container {
flex-direction: column-reverse;
}
}
@media (max-width: 590px) {
.gif {
max-width: 300px;
}
.container {
flex-direction: column-reverse;
justify-content: start;
}
.text-title {
font-size: 32px;
}
.text-paragraph {
font-size: 14px;
}
.text-paragraph br {
display: none;
}
}
@media (max-width: 300px) {
.gif {
max-width: 270px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="text-container">
<div class="text-title">
Nossa <br>
instituição está <br>
de cara nova!</div>
<div class="text-paragraph">
Isso mesmo, o IPTI mudou de nome agora é THP e para fazer jus <br>
ao nosso novo nome e visual, nada melhor do que um novo site <br>
com melhorias e praticidade para você que nos acompanha.
</div>
<a class="button" href="https://www.thehumanproject.org.br/" target="_blank">Clique aqui e confira
</a>
<div class="text-paragraph">
Se você precisar falar conosco, escreva para <span class="text-green">thp@thp.org.br</span>
</div>
</div>
<div class="gif-contianer">
<img class="gif" src="./assets/gif.gif" alt="git IPTI">
</div>
</div>
</body>
</html>