Skip to content

Commit 670cbad

Browse files
committed
PROJETO CONCLUIDO
1 parent ee4fb93 commit 670cbad

File tree

3 files changed

+47
-6
lines changed

3 files changed

+47
-6
lines changed

README.MD

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
<h1>CriptoDataS</h1>
22

3-
<h2>Status: Em desenvolvimento</h2>
3+
<h2>Status: Concluido</h2>
44
<p>Data de início: 13/03/2023</p>
5-
<p>Ultima atualização: 22/03/2023</p>
5+
<p>Conclusão: 23/02/2023
6+
<p>Ultima atualização: 23/03/2023</p>
7+
8+
<img src='assets/projeto.png' alt='PROJETO' style="width:500px">
69

710
<h2>Descrição</h2>
811
<p>Projeto pessoal, onde será possível analisar informações de criptomoedas</p>
912
<p>Os dados coletados, serão atualizados em tempo real, obtidos através da API https://www.mercadobitcoin.com.br/api-doc/</p>
10-
13+
https://icons8.com.br/icon/pIPl8tqh3igN/selecionado
1114
<h2>Funcionalidades</h2>
1215
<ul>
1316
<li>Você poderá escolher dois tipos de criptomoedas</li>

assets/projeto.png

723 KB
Loading

style.css

+41-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
--font-padrao:'Bad Script', cursive;
33
--font-money: 'Inconsolata', monospace;
44
--font-titulo:'Rubik Iso', cursive;
5+
--size-ph-selm:1.3rem;
6+
--size-h-titulo:2.7rem;
57
}
68

79
body{
@@ -15,14 +17,14 @@ header{
1517
color: rgb(0, 52, 121);
1618
height: 15%;
1719
font-family: var(--font-padrao);
18-
font-size: 1.3rem;
20+
font-size: var(--size-ph-selm);
1921
font-weight: bolder;
2022
text-align: center;
2123
text-shadow:2px 2px 4px rgb(0, 52, 121);;
2224
}
2325

2426
#h_titulo{
25-
font-size: 2.7rem;
27+
font-size: var(--size-h-titulo);
2628
margin-bottom: 10px;
2729
font-family: var(--font-titulo);
2830
}
@@ -67,7 +69,7 @@ main{
6769
color: rgb(0, 52, 121);
6870
font-family: var(--font-padrao);
6971
font-weight: bold;
70-
font-size: 1.2rem;
72+
font-size: var(--size-ph-selm);
7173
text-align: center;
7274
}
7375

@@ -108,4 +110,40 @@ footer{
108110
letter-spacing: 1px;
109111
padding-top: 2px;
110112
text-align: center;
113+
}
114+
115+
@media screen and (min-width:480px){
116+
117+
:root{
118+
--size-ph-selm: 1.5rem;
119+
--size-h-titulo: 3rem;
120+
}
121+
}
122+
123+
@media screen and (min-width:768px) {
124+
:root{
125+
--size-ph-selm: 1.5rem;
126+
--size-h-titulo: 3.5rem;
127+
}
128+
129+
main{
130+
width: 800px;
131+
margin: auto;
132+
}
133+
.moeda_dados{
134+
font-size: 1.3rem;
135+
gap:12px;
136+
}
137+
138+
#descricao_card{
139+
font-size: .9rem;
140+
}
141+
142+
#descricao_card p{
143+
margin-top: 5px;
144+
}
145+
146+
147+
148+
111149
}

0 commit comments

Comments
 (0)