-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStyles.html
71 lines (59 loc) · 1.1 KB
/
Styles.html
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
<!DOCTYPE html>
<style>
* {
margin: 0;
padding: 0;
line-height: 16px;
font-size: 1rem;
}
form {
display: flex;
flex-direction: column;
padding: 1rem .5rem;
}
#name_and_company {
display: flex;
flex-direction: column;
margin-bottom: 1rem;
}
#name_and_company input {
margin-bottom: .5rem;
}
#name_and_company label {
margin-bottom: .25rem;
}
.template_option {
padding: .5rem;
border: 1px solid grey;
cursor: pointer;
}
.template_option:hover {
background-color: gainsboro;
}
.template_option:last-of-type {
margin-bottom: 2rem;
}
.template_option input[type='radio'] {
margin-right: 1rem;
}
input[type='submit'] {
padding: 1rem;
border-radius: 5px;
border: none;
background-color: dodgerblue;
color: white;
opacity: 1;
}
input[type='submit'].disabled {
opacity: .6;
color: light-grey;
}
#copy_confirm {
margin-bottom: .5rem;
visibility: hidden;
}
#copy_confirm.visible{
visibility: visible;
color: lawngreen;
}
</style>