forked from AmanamIsrael/Simple-image-compressor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
43 lines (40 loc) · 812 Bytes
/
index.css
File metadata and controls
43 lines (40 loc) · 812 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap');
body {
margin: 1em;
font-family: 'Inter', sans-serif;
background-color: rgb(173, 144, 255);
}
* {
box-sizing: border-box;
text-align: center;
}
#compressedImg{
border-radius: 15px;
box-shadow: 15px 15px 15px 15px rgb(159, 128, 244);
}
input {
margin-bottom: 3em;
}
#compressedImg{
background-color: whitesmoke;
}
a {
display: none;
text-decoration: none;
padding: .5em;
background-color: rgb(41, 41, 41);
color: rgb(255, 255, 255);
border-radius: 3px;
}
a:hover{
background-color: blueviolet;
}
h6{
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: rgb(50, 9, 89);
font-size: small;
}
img {
height: 300px;
width: 320px;
}