Spaces:
Running
Running
File size: 2,012 Bytes
475d366 | 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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | * {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #f5f7fa;
color: #333;
}
nav {
background: #2c3e50;
color: white;
padding: 1rem 2rem;
display: flex;
align-items: center;
gap: 2rem;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
nav h1 {
font-size: 1.5rem;
margin-right: auto;
}
nav a {
color: white;
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 4px;
transition: background 0.3s;
}
nav a:hover {
background: #34495e;
}
.container {
max-width: 1200px;
margin: 2rem auto;
padding: 0 2rem;
}
.card {
background: white;
border-radius: 8px;
padding: 2rem;
margin-bottom: 2rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card h3 {
margin-bottom: 1rem;
color: #2c3e50;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-bottom: 1rem;
}
.form-group {
display: flex;
flex-direction: column;
}
.form-group label {
font-weight: 600;
margin-bottom: 0.5rem;
color: #555;
}
.form-group input {
padding: 0.75rem;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 1rem;
}
.form-group input:focus {
outline: none;
border-color: #3498db;
}
.btn {
background: #3498db;
color: white;
padding: 0.75rem 1.5rem;
border: none;
border-radius: 4px;
font-size: 1rem;
cursor: pointer;
text-decoration: none;
display: inline-block;
transition: background 0.3s;
}
.btn:hover {
background: #2980b9;
}
.actions {
display: flex;
gap: 1rem;
margin-top: 1rem;
}
h2 {
margin-bottom: 1.5rem;
color: #2c3e50;
}
p {
line-height: 1.6;
margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
.form-row {
grid-template-columns: 1fr;
}
.actions {
flex-direction: column;
}
nav {
flex-wrap: wrap;
}
}
|