-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (67 loc) · 1.41 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
body {
font-family: 'Arial', sans-serif,;
background: linear-gradient(to bottom, #185680 50%, #eaedee 50%);
text-align: center;
padding: 50px;
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.menu-button {
position: absolute;
top: 20px;
left: 20px;
}
.menu-button button {
background-color: #f7fafd;
color: rgb(7, 8, 15);
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 18px;
}
.menu-button button:hover {
background-color: #3c5f83;
}
.container {
background-color: #cce1f8;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 600px;
}
.image-container img {
width: 100%;
max-width: 300px;
border-radius: 10px;
margin-bottom: 20px;
}
.info-container h1 {
font-family: 'Roboto', sans-serif;
font-size: 46px;
margin-bottom: 10px;
}
.info-container p {
font-size: 22px;
margin-bottom: 20px;
color: #1e2327;
}
form input[type="file"] {
margin-bottom: 20px;
}
form button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
form button:hover {
background-color: #3084df;
}