-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (91 loc) · 1.17 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
img
{
opacity: 0;
width: 100%;
display: block;
}
svg
{
width: 96%;
z-index: 8;
opacity: 1;
position: absolute;
}
svg:hover
{
opacity:0;
}
svg:hover+img
{
opacity:1;
}
#mainform
{
width: 100%;
margin-top: 15px;
border: 1px dotted black;
padding: 5px;
}
@media only screen and (min-width: 900px) {
img
{
width: 56.25%;
}
svg
{
width: 54%;
}
#mainform
{
width: 40%;
position: absolute;
right: 2%;
top: 120px;
}
}
#mainform input, #mainform input
{
width: calc(100% - 10px);
display: block;
padding: 5px;
margin: 5px;
}
#mainform button
{
padding: 5px;
margin: 5px;
}
input[type=file]
{
width: 0.1px;
height: 0.1px;
opacity: 0;
overflow: hidden;
position: absolute;
z-index: -1;
}
.f_label
{
display: inline-block;
padding-left: 1rem;
padding-right: 1rem;
margin: 10px;
height: 50vh;
width: 50vh;
margin-left: calc(50% - 25vh);
font-weight: 500;
font-size: 14px;
line-height: 50vh;
text-align: center;
overflow:hidden;
background-color: white;
border: 1px solid #09f;
text-transform: uppercase;
cursor: pointer;
}
.f_label:hover
{
background-color: #f09;
color: white;
border: 1px solid #f09;
}