Spaces:
Sleeping
Sleeping
File size: 1,219 Bytes
7b7a4cc 9420b3c a0f002f 7b7a4cc a0f002f 7b7a4cc 1730746 a0f002f 7b7a4cc 9420b3c 7b7a4cc a0f002f 7b7a4cc a0f002f 7b7a4cc 9420b3c 7b7a4cc 1730746 9420b3c 7b7a4cc 1730746 7b7a4cc 1730746 7b7a4cc 1730746 a0f002f 7b7a4cc 1730746 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
/* style.css */
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #001021;
color: #333;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 50px auto;
padding: 30px;
background: #fff;
border-radius: 12px;
box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
h1 {
text-align: center;
color: #3f51b5;
margin-bottom: 30px;
}
form {
display: flex;
flex-direction: column;
gap: 15px;
}
label {
font-weight: 600;
display: flex;
justify-content: space-between;
align-items: center;
}
input[type="number"],
input[type="text"],
select {
padding: 8px 12px;
font-size: 14px;
border: 1px solid #ccc;
border-radius: 6px;
flex-grow: 1;
margin-left: 10px;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 10px;
}
button {
background-color: #3f51b5;
color: white;
padding: 12px;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: background 0.3s ease;
}
button:hover {
background-color: #303f9f;
}
#result {
margin-top: 20px;
background: #e8f5e9;
border: 1px solid #c8e6c9;
padding: 15px;
border-radius: 6px;
font-size: 18px;
}
|