-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
143 lines (132 loc) · 2.82 KB
/
style.css
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
body{
background-color: rgba(175, 192, 230, 0.37);
font-family:'Courier New', Courier, monospace;
width: 600px;
height: 600px;
}
.main{
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.header{
display: flex;
align-items: center;
justify-content: center;
height: 10vh;
width: 80vw;
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
background-color: rgba(255, 255, 255, 0.55);
border-radius: 12px;
border: 1px solid rgba(209, 213, 219, 0.3);
}
.header h1{
color: rgb(80, 189, 240);
font-size: 1.5rem;
}
.form-style{
height: 45vh;
width: 60vw;
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
background-color: rgba(255, 255, 255, 0.55);
border-radius: 12px;
border: 3px dashed rgba(2, 2, 2, 0.3);
padding: 1%;
margin-bottom: -30px;
justify-content: center;
resize: both;
overflow: scroll;
}
.form-style form{
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.column {
float: left;
width: 90%;
}
.column1 {
float: right;
width: 10%;
margin-right: -50px;
}
/* Clear floats */
.row:after {
content: "";
display: table;
clear: both;
}
.upload-button{
background-color: #4e9ee9;
height: 8vh;
width: 60%;
border: 1px solid white;
color: white;
font-size: 1.2rem;
border-radius: 30px;
cursor: pointer;
margin: 4% 2% 2% 2%;
}
.upload{
padding-bottom:20px;
padding-top:170px;
}
.trash{
margin-right: -30px;
}
.download{
padding-top:10px;
}
.footer{
height: fit-content;
width: fit-content;
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
background-color: rgba(255, 255, 255, 0.55);
border-radius: 12px;
border: 1px solid rgba(209, 213, 219, 0.3);
padding: 1%;
color: black;
font-size: 0.7rem !important;
margin-top: 0px;
}
@import url('//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css');
a, a:hover {
text-decoration: none;
}
.socialbtns, .socialbtns ul, .socialbtns li {
margin: 0;
padding: 5px;
align-items: center;
}
.socialbtns li {
list-style: none outside none;
display: inline-block;
}
.socialbtns .fa {
width: 40px;
height: 28px;
color: #000;
background-color: #FFF;
border: 1px solid #000;
padding-top: 9px;
padding-left: 11px;
border-radius: 22px;
-moz-border-radius: 22px;
-webkit-border-radius: 22px;
-o-border-radius: 22px;
}
.socialbtns .fa:hover {
color: #ffffff;
background-color: #000;
border: 1px solid #000;
}