-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
79 lines (70 loc) · 1.28 KB
/
style.scss
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
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
body , html{
font-family: "Inter";
font-size: 16px;
height: 100vh;
background-color: #eeeeff;
overflow-x: hide;
}
*{
padding: 0;
margin: 0;
}
h1{
text-transform: uppercase;
text-align: center;
margin: 1rem;
}
progress{
display: none;
width: 12rem;
}
.container{
display: flex;
justify-content: center;
flex-direction: column;
margin: auto;
padding: 0.5rem;
max-width: calc(100vw - 20%);
min-height: calc(100vh - 5rem)
}
.input{
display: flex;
justify-content: center;
gap: 1rem;
flex-direction: column;
align-items: center;
}
#files{
width: 12rem;
}
.linkwrapper{
display: flex;
justify-content: space-between;
padding: 2rem;
margin: 1rem;
border: 2px black solid;
border-radius: 10px;
align-items: center;
gap: 1rem;
}
.linkwrapper img{
width:100px;
}
footer{
display: flex;
text-align: center;
justify-content: center;
align-items: center;
background-color: #5151e3;
min-height: 4rem;
color: white;
text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.638) ;
}
.logo{
height: 100px;
}
footer a{
text-decoration: none;
color: rgb(255, 79, 79);
}