-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
style.css
88 lines (78 loc) · 1.89 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 {
background-color: #f8f8ff;
}
.header {
padding-left: 20px;
font-family: sans-serif;
}
.header h2 {
margin-bottom: 4px;
font-size: 25px;
}
.header p {
margin-top: 0;
font-size: 18px;
color: #74736f;
}
.textarea-container {
padding: 0 20px 20px 20px; /* Used to emulate margin on #main-textarea, otherwise we have to use calc(100% - 20px) which isn't widely supported. */
}
#main-textarea {
width: 100%;
height: 80vh;
font-size: 19px;
line-height: 1.3;
border: 20px solid rgba(0, 0, 0, 0); /* Alternative to padding, brings the resizer handle inwards. */
box-shadow: rgba(234, 82, 248, 0.3) 0px 0px 1px, rgba(0, 102, 255, 0.3) 0px 0px 1px 1px, rgba(38, 38, 38, 0.3) 0px 3px 3px;
border-radius: 10px;
background-color: #fbfbff;
box-sizing: border-box;
position: relative;
}
#download-link {
width: 160px;
height: 50px;
margin-left: 20px;
color: #fbfbff;
font-family: sans-serif;
font-size: 19px;
font-weight: bold;
text-decoration: none;
text-align: center;
background: rgba(0, 0, 0, 0) linear-gradient(45.34deg, rgb(234, 82, 248) 5.66%, rgb(0, 102, 255) 94.35%) repeat scroll 0% 0%;
box-shadow: rgba(38, 38, 38, 0.3) 0px 3px 3px;
border-radius: 5px;
opacity: 0.9;
transition-duration: 0.2s;
display: inline-block;
}
#download-link:hover {
opacity: 1;
transition-duration: 0.2s;
}
.feather {
bottom: 2px;
width: 24px;
height: 50px;
margin-right: 2px;
stroke: currentColor;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
fill: none;
vertical-align: middle;
position: relative;
}
#auto-update {
bottom: 3px;
width: 30px;
height: 30px;
margin-left: 20px;
vertical-align: middle;
position: relative;
}
.auto-update-text {
margin-left: 5px;
font-family: sans-serif;
font-size: 19px;
}