weatherapp.css

weatherapp.css
 avatar
unknown
plain_text
a year ago
1.7 kB
9
Indexable
/* WeatherApp.css

/* Main container */
App {
    text-align: center;
    background-color: #ca2727; /* Light gray background */
    padding: 20px;
  }
  
  /* Header styling */
  .App-header {
    background-color:#2c3e50; /* Light blue */
    color: palevioltred; /* White text */
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  /* Navigation styling */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-right p {
    color: orange;
    margin-right: 20px;
    margin-top: 15px;
  }
  
  /* Search box and button styling */
  input[type="text"] {
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ccc;
  }
  
  button {
    background-color: #2ecc71; /* Light green button */
    color: #ffffff; /* White text */
    padding: 10px;
    cursor: pointer;
    border: none;
  }
  
  button:hover {
    background-color: #27ae60; /* Slightly darker green on hover */
  }
  .dash-link{
    color: #ffffff;
    margin-left: 0;
    
  }
  
  /* Result display styling */
  div {
    margin-top: 20px;
  }
  
  /* Weather details styling */
  p {
    margin: 0;
    font-size: 18px;
  }
  
  /* Additional styling for location, temperature, and condition */
  div > p:nth-child(1) {
    font-size: 24px;
    font-weight: bold;
    color: orange;
  }
  
  div > p:nth-child(2) {
    font-size: 36px;
    color: aliceblue;
  }
  
  div > p:nth-child(3),
  div > p:nth-child(4) {
    font-style: italic;
    color:crimson
  } 

  .appname{
    color:beige
  }
Editor is loading...
Leave a Comment