aje6 commited on
Commit
a582832
·
verified ·
1 Parent(s): 4105924

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +40 -0
style.css ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ html,
2
+ body {
3
+ font-family: Arial, Helvetica, sans-serif;
4
+ }
5
+
6
+ .container {
7
+ margin: 40px auto;
8
+ width: max(50vw, 400px);
9
+ display: flex;
10
+ flex-direction: column;
11
+ align-items: center;
12
+ }
13
+
14
+ .custom-file-upload {
15
+ display: flex;
16
+ align-items: center;
17
+ gap: 10px;
18
+ border: 2px solid black;
19
+ padding: 8px 16px;
20
+ cursor: pointer;
21
+ border-radius: 6px;
22
+ }
23
+
24
+ #file-upload {
25
+ display: none;
26
+ }
27
+
28
+ .upload-icon {
29
+ width: 30px;
30
+ }
31
+
32
+ #image-container {
33
+ width: 100%;
34
+ margin-top: 20px;
35
+ position: relative;
36
+ }
37
+
38
+ #image-container>img {
39
+ width: 100%;
40
+ }