Skip to content

Commit

Permalink
Create Carbo-footprint.css (#111)
Browse files Browse the repository at this point in the history
This is the css file for the carbon footprint tracking feature.
  • Loading branch information
khushi-joshi-05 authored Oct 5, 2024
2 parents 71b8bcf + b8fb1b3 commit 883976d
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions Carbo-footprint.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
body {
font-family: Arial, sans-serif;
background-color: #EDF6F9;
color: #333;
text-align: center;
padding: 20px;
}

.container {
max-width: 600px;
margin: auto;
padding: 20px;
border: 1px solid #006D77;
border-radius: 10px;
background-color: #FFDDD2;
}

label {
display: block;
margin: 10px 0 5px;
}

input {
width: 100%;
padding: 8px;
margin-bottom: 15px;
border: 1px solid #006D77;
border-radius: 5px;
}

button {
padding: 10px 15px;
background-color: #006D77;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}

button:hover {
background-color: #004c54;
}

.result, .tips {
margin-top: 20px;
font-weight: bold;
}

0 comments on commit 883976d

Please sign in to comment.