Celsius *C
25 |-50.00100.00
26 |Fahrenheit 30 | 31 | *F
32 | 33 |-58.00212.00
34 |Kelvin K
38 | 39 |223.14 373.15
40 |├── README.md ├── .gitattributes ├── favicon.png ├── READMI.md ├── style.css ├── LICENSE ├── index.html └── script.js /README.md: -------------------------------------------------------------------------------- 1 | # converso_temperatura 2 | conversor de temperatura 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/betoblid/converso_temperatura/HEAD/favicon.png -------------------------------------------------------------------------------- /READMI.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | site focado em converção de temperaturas em tempo real esta em desenvolvimento e futuros updates estão por vim... -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background: rgb(9, 9, 31); 3 | color: white; 4 | box-sizing: border-box; 5 | text-align: center; 6 | } 7 | /*estilizando o topo da pagina*/ 8 | header h1{ 9 | font: bold 28px Arial; 10 | } 11 | header p{ 12 | font: 200 18px Arial; 13 | } 14 | .container{ 15 | display: flex; 16 | align-items: center; 17 | justify-content: center; 18 | flex-direction: column; 19 | gap: 20px; 20 | margin: 60px auto; 21 | } 22 | .card{ 23 | border: 1px solid white; 24 | border-radius: 20px; 25 | width: 300px; 26 | padding: 10px; 27 | } 28 | .card p input[type="range"], 29 | .card p input[type="number"]{ 30 | margin: 0 10px; 31 | font: bold 18px Arial; 32 | text-align: center; 33 | color: black; 34 | } 35 | .card p{ 36 | font: bold 16px Arial; 37 | } 38 | 39 | footer p{ 40 | font: bold 18px Arial; 41 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 dev-herbert 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 |Use o slider da escalar de graus Celsius para converte automaticamente.
18 |Celsius *C
25 |-50.00100.00
26 |Fahrenheit 30 | 31 | *F
32 | 33 |-58.00212.00
34 |Kelvin K
38 | 39 |223.14 373.15
40 |