-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·49 lines (48 loc) · 1.54 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
body { background-color: #E5E6E6; }
a {text-decoration:none;}
#logo { color: #EE82EE; font-family: 'Finger Paint', cursive; font-size: 150px; text-align: center;}
#panel { text-align:center; font-family: 'Finger Paint', cursive;}
#panel a {color: #660198}
#panel a:hover{color:#BF3EFF}
#holder {
background-color: #FFF;
text-align:center;
font-family: 'Finger Paint', cursive;
-moz-transition: background-color 1s, height 1s, box-shadow 1s;
-webkit-transition: background-color 1s, height 1s, -webkit-box-shadow 1s;
transition: background-color 1s, height 1s, box-shadow 1s, -moz-box-shadow 1s, -webkit-box-shadow 1s;
width: 60%;
margin-left: auto;
margin-right: auto;
height: 200px;
vertical-align:middle;
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius: 5px 5px 5px 5px;
border-radius: 5px 5px 5px 5px;
-moz-box-shadow: 0 0 8px 8px #FFF;
-webkit-box-shadow: 0 0 8px 8px #FFF;
box-shadow: 0 0 8px 8px #FFF;
}
#holder.extend {
height: 400px;
}
#holder.dragin {
background-color: #a0ffe5;
box-shadow: 0 0 8px 8px #a0ffe5;
-moz-box-shadow: 0 0 8px 8px #a0ffe5;
-webkit-box-shadow: 0 0 8px 8px #a0ffe5;
}
#draghere {
line-height: 200px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#draghere.hide { display:none;}
#uploadprogress.hide { display: none;}
#uploadprogress { width: 40%; }
#cnt { text-align:center; margin-left: auto; margin-right: auto; margin-top: -20px;}
#holder img { margin left: 30px;}