0% found this document useful (0 votes)
10 views

Style

Uploaded by

bmphuon01
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views

Style

Uploaded by

bmphuon01
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

/* Reset some default browser styling */

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
}

.container {
width: 80%;
margin: 0 auto;
}

header {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}

header h1 {
font-size: 2.5rem;
}

header p {
font-size: 1.2rem;
margin-top: 10px;
}

main {
display: flex;
justify-content: space-between;
margin-top: 20px;
}

section {
background-color: #fff;
padding: 20px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
width: 30%;
}

section h2 {
font-size: 1.5rem;
margin-bottom: 10px;
}

ul#market-data {
list-style: none;
padding: 0;
}

ul#market-data li {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}

form {
display: flex;
flex-direction: column;
}

label {
font-size: 1rem;
margin-bottom: 5px;
}

select, input {
padding: 10px;
margin-bottom: 15px;
border: 1px solid #ddd;
font-size: 1rem;
}

button {
padding: 15px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
font-size: 1.2rem;
}

button:hover {
background-color: #45a049;
}

footer {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
margin-top: 40px;
}

You might also like