-
Notifications
You must be signed in to change notification settings - Fork 10
/
styles.css
134 lines (122 loc) · 2.65 KB
/
styles.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
.centered {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.centered h1 {
background: #4f4d4d;
color: white;
padding: 10px;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
margin-bottom: 0;
border-radius: 10px 10px 0px 0px;
-moz-border-radius: 10px 10px 0px 0px;
-webkit-border-radius: 10px 10px 0px 0px;
}
.centered form {
padding: 30px;
background: white;
color: #5d5b5b;
font-family: Arial, Helvetica, sans-serif;
-webkit-box-shadow: 0px 0px 5px 0px rgba(138, 138, 138, 0.75);
-moz-box-shadow: 0px 0px 5px 0px rgba(138, 138, 138, 0.75);
box-shadow: 0px 0px 5px 0px rgba(138, 138, 138, 0.75);
border-radius: 0px 0px 10px 10px;
-moz-border-radius: 0px 0px 10px 10px;
-webkit-border-radius: 0px 0px 10px 10px;
}
.centered form .control {
display: flex;
justify-content: space-between;
align-items: center;
margin: 15px;
margin-top: 30px;
margin-bottom: 30px;
}
.centered form .control-center {
display: flex;
justify-content: center;
align-items: center;
margin: 15px;
}
.centered form .control-center #file {
margin-left: 0px;
background-color: #106BA0;
color: white;
padding: 10px;
font-size: 14px;
}
.centered form input {
outline: none;
border: 1px solid #cecdce;
line-height: 25px;
padding: 5px;
font-size: 14px;
color: #5d5b5b;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
}
#file {
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
#inputLabel {
background-color: #c5595b;
color: white;
padding: 10px;
font-size: 14px;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
}
#submit {
background: #5eace4;
border: none;
color: white;
padding: 10px;
font-size: 14px;
border-radius: 5px 5px 5px 5px;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
text-decoration: none;
}
body {
background: #eb6a6c;
}
.footer {
position: fixed;
left: 0;
bottom: 40;
width: 100%;
font-size: 30px;
background-color: #eb6a6c;
color: white;
text-align: center;
}
.footer:hover{
opacity: 0.7;
}
a{
color: white;
text-decoration: none;
}
img{
position: fixed;
text-align: center;
margin: 5px 2px;
font-size: 30px;
bottom: 0;
left: 700px;
width: 35px;
}
img:hover{
opacity: 0.7;
}