-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconvert.css
60 lines (49 loc) · 826 Bytes
/
convert.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
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
html,body {
height: 100%;
}
body {
margin: 0;
background-color: #dfdfdf;
font-family: 'Open Sans', sans-serif;
}
fieldset {
border: 0;
}
.wrapper{
display: flex;
align-items: center;
justify-content: center;
min-height: 100%;
}
.page{
max-width: 570px;
background: rgba(250,250,250,.9);
padding: 10px 20px;
box-shadow: 4px 4px 10px rgba(0,0,0,.5);
border-radius: 2px;
}
canvas {
display: block;
margin: auto;
}
.fork {
position: absolute;
top: 0;
right: 0;
border: 0;
}
.download {
text-align: center;
}
.btn {
border: 1px solid #B0C3D8;
border-radius: 2px;
background-color: #E0E9FD;
padding: 4px 6px;
text-decoration: none;
color: #000;
}
.btn:hover {
background-color: #E0F3F9;
}