-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathmain.css
96 lines (83 loc) · 1.56 KB
/
main.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
html, body {
background-color:#030404;
}
#apainter-ui{
font-family: Helvetica, Arial, sans-serif;
position: absolute;
left: 20px;
bottom: 20px;
line-height: 1.2em;
background-color: rgba(10,10,10,0.8);
border-radius: 6px;
padding: 1.7em 2em;
display: none;
}
#apainter-ui .help{
width: 600px;
color: #ccc;
font-size: 14px;
text-shadow: 0px 2px 1px #000;
}
#apainter-ui .help h1{
font-size: 22px;
font-weight: 100;
color: #e42b5a;
margin-top: 0;
}
#apainter-ui .button {
background-color: #ef2d5e;
color: #fff;
cursor: pointer;
font-size: 12px;
width: 130px;
text-align: center;
max-width: 115px;
padding: 6px;
}
#apainter-ui .button:hover {
background-color: #f43b6a;
}
#apainter-ui .form {
display: flex;
align-content: center;
}
#apainter-ui .share input {
width: 600px;
color: #333;
text-align: center;
}
#apainter-ui .hide {
display: none !important;
}
#apainter-ui .progress{
font-size: 22px;
font-weight: 100;
color: #e42b5a;
border-bottom: 1px solid #e42b5a;
text-shadow: 0px 2px 1px #000;
}
#apainter-ui .bar{
width: 0%;
height: 3px;
margin-top: 13px;
background-color: #e42b5a;
}
#apainter-logo {
position: fixed;
bottom: 15px;
left: 15px;
height: 54px;
width: 226px; /* 252px; for logo with author */
background-image: url(../assets/images/apainter-banner.png);
}
#apainter-logo.hidden, #apainter-author.hidden{
display: none;
}
#apainter-author {
position: fixed;
bottom: 28px;
left: 268px;
display: inline-block;
font: 18px arial, sans-serif;
color: #e42b5a;
}