forked from daniel-j/send2ereader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (79 loc) · 1.35 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
body {
line-height: 1.3;
font-family: serif;
}
.wrapper {
margin: 0 auto;
padding: 0 20px;
max-width: 650px;
}
h1 {
font-size: 2em;
font-weight: normal;
font-style: italic;
}
#key {
font-size: 5em;
display: block;
letter-spacing: 0.2em;
margin: 10px 0;
font-family: sans-serif;
white-space: nowrap;
text-transform: uppercase;
}
.center {
text-align: center;
}
.right {
text-align: right;
}
#keygen, #downloadlink {
background: #CCC;
border: none;
color: black;
font-style: italic;
padding: 0.6em 1.3em;
line-height: 1.6;
display: inline-block;
font-family: inherit;
font-size: 1.2em;
}
#keygen:focus {
background: black;
color: white;
}
#downloads {
display: none;
}
#keyinput {
font-size: 4em;
width: 3.5em;
text-align: center;
font-family: monospace;
letter-spacing: 0.1em;
}
#uploadstatus {
opacity: 0;
transition: opacity .5s ease-in-out;
padding: 10px;
margin-top: 20px;
border-radius: 5px;
text-align: center;
cursor: pointer;
line-height: 1.7;
}
#uploadstatus.success {
background-color: #DFD;
border: 1px solid #7F7;
}
#uploadstatus.error {
background-color: #FDD;
border: 1px solid #F77;
}
td.right {
padding: 10px;
}
#fileinfo {
font-size: 0.9em;
font-style: italic;
}