-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (76 loc) · 1.27 KB
/
style.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
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: #333;
}
/* Header */
header {
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 40px;
margin-right: 10px;
}
nav ul {
display: flex;
list-style: none;
}
nav li {
margin-left: 20px;
}
nav a {
color: #333;
text-decoration: none;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
}
nav a:hover {
color: #3498db;
}
/* Main */
main {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.upload-form {
flex-basis: calc(50% - 20px);
margin-bottom: 20px;
}
.upload-form h2 {
margin-bottom: 10px;
}
.upload-form input[type="file"] {
margin-bottom: 10px;
}
.upload-form button[type="submit"] {
background-color: #3498db;
border: none;
color: #fff;
cursor: pointer;
font-size: 16px;
padding: 10px 20px;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 2px;
}
.upload-form button[type="submit"]:hover {