Upload style.css
Browse files
style.css
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
font-family: 'Arial', sans-serif;
|
3 |
+
font-size: 80px;
|
4 |
+
background-color: #0D1B2A;
|
5 |
+
color: #E0E1DD;
|
6 |
+
}
|
7 |
+
|
8 |
+
.header {
|
9 |
+
display: grid;
|
10 |
+
grid-template-columns: 5fr 1fr;
|
11 |
+
column-gap: 5px;
|
12 |
+
align-text: right;
|
13 |
+
align-content: right;
|
14 |
+
padding: 25px;
|
15 |
+
background-color: #1B263B;
|
16 |
+
border-bottom: 1px solid #E0E1DD;
|
17 |
+
}
|
18 |
+
|
19 |
+
.header h1 {
|
20 |
+
font-size: 2rem;
|
21 |
+
color: #E0E1DD;
|
22 |
+
margin: 0;
|
23 |
+
}
|
24 |
+
|
25 |
+
.dark-blue {
|
26 |
+
background-color: #1B263B;
|
27 |
+
border: 1px solid #E0E1DD;
|
28 |
+
padding: 10px;
|
29 |
+
border-radius: 5px;
|
30 |
+
}
|
31 |
+
|
32 |
+
.dark-blue label {
|
33 |
+
color: #E0E1DD;
|
34 |
+
}
|
35 |
+
|
36 |
+
.dark-blue button {
|
37 |
+
background-color: #415A77;
|
38 |
+
color: #E0E1DD;
|
39 |
+
border: none;
|
40 |
+
padding: 10px;
|
41 |
+
border-radius: 5px;
|
42 |
+
cursor: pointer;
|
43 |
+
}
|
44 |
+
|
45 |
+
.dark-blue button:hover {
|
46 |
+
background-color: #1B263B;
|
47 |
+
}
|
48 |
+
|
49 |
+
.dark-blue textarea {
|
50 |
+
background-color: #0D1B2A;
|
51 |
+
color: #E0E1DD;
|
52 |
+
border: 1px solid #E0E1DD;
|
53 |
+
border-radius: 5px;
|
54 |
+
}
|
55 |
+
|
56 |
+
.dark-blue input[type="file"] {
|
57 |
+
color: #E0E1DD;
|
58 |
+
border: 1px solid #E0E1DD;
|
59 |
+
border-radius: 5px;
|
60 |
+
padding: 5px;
|
61 |
+
background-color: #1B263B;
|
62 |
+
}
|
63 |
+
|
64 |
+
img {
|
65 |
+
max-width: 100%;
|
66 |
+
max-height:100%;
|
67 |
+
}
|