-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
55 lines (47 loc) · 873 Bytes
/
styles.css
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
body {
font-family: 'Arial', sans-serif;
background: linear-gradient(45deg, #1a202c, #2d3748);
margin: 0;
display: flex;
min-height: 100vh;
flex-direction: column;
color: white;
}
header {
background-color: #2d3748;
padding: 1rem 0;
text-align: center;
}
header img {
max-width: 100%;
}
main {
flex: 1;
}
footer {
padding: 1rem;
text-align: center;
background-color: #2d3748;
color: white;
}
.container {
max-width: 600px;
margin: auto;
}
.card {
background-color: #2d3748;
border: 1px solid #4a5568;
border-radius: 8px;
padding: 16px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
.card textarea,
.card input[type="text"] {
background-color: #4a5568;
color: white;
border: 1px solid #4a5568;
}
input[type="text"] {
color: #a0aec0;
}