-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (90 loc) · 1.74 KB
/
style.css
File metadata and controls
94 lines (90 loc) · 1.74 KB
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
91
92
93
94
*{
padding: 0;
margin: 0;
font-family: serif;
border: border-box ;
box-sizing: border-box;
}
.navbar{
height: 90px;
background-color: #efeded;
color: black;
font-size: 40 px;
text-decoration: none;
align-items: centre;
position: relative;
display: flex;
h1{
text-transform: uppercase;
font-weight: bolder;
}
h2{
color:rgb(211, 110, 27);
font-weight: normal;
font-style: arial;
display: grid;
place-items: center;
text-align: right;
float: right;
position:absolute;
right:0;
top:0;
font-size: larger;
font-weight: 800;
}
}
.navbar img{
right:0;
position: relative;
right:0%;
float:right;
}
.upload{
width:100%;
min-height: 100vh;
background: linear-gradient(#e7baff, #c2b6d9);
display: flex;
align-content: center;
justify-content: center;
}
#drop-area{
width:30%;
height:40%;
padding: 30px;
background: #fff;
text-align: center;
border-radius: 20px;
margin-top: 25px;
}
.img-view{
width:100%;
height:100%;
border-radius: 20px;
border: 2px dashed #a4abe3;
}
.img-view img{
width:30%;
margin-top: 25px;
}
.img-view span{
display: block;
font-size: 1rem;
color:#777;
margin-top: 15px;
}
.text{
width:29%;
height: 30%;
border:1px solid #030303;
padding:10px;
font-size: 1rem;
overflow:auto;
resize: vertical;
outline: none;
position: absolute;
top: 50%;
bottom:50%;
margin-left: 50%;
margin-top: 10%;
transform: translate(-50%,-50%);
}