-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.css
76 lines (66 loc) · 1.17 KB
/
options.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
*, *:before, *:after {
box-sizing: border-box;
}
h1 {
text-shadow: 2px 3px blue;
color: #00FFFF;
font-size: 36px;
text-align: center;
}
h3 {
margin: 10px;
padding: 5px;
}
h2 {
font-size: 24px;
text-align: center;
}
form {
background-color: #aaaaaa;
border-color: #000000;
padding: 5px;
margin: 20px;
width: max-content;
border-radius:10px;
box-shadow: 6px 12px 4px black;
}
label {
font-weight: bold;
margin: 10px;
padding: 5px;
padding-bottom: 0px;
margin-bottom: 0px;
display: block;
}
.topLabel {
display: inline-block;
}
input[type=text] {
padding: 5px;
margin: 10px;
border-radius:10px;
}
button {
appearance:none;
-webkit-appearance:none;
font-weight:600;
border-radius:25px;
padding:.5rem 1rem;
margin: 10px;
border: 1px solid #012880;
background-image: linear-gradient(-180deg, #0089D6 0%, #00ffff 100%);
box-shadow: 0 .25rem .5rem 0 rgba(0,75,195,0.50),
0 -0.25rem .5rem rgba(0, 15, 155, 1) inset,
0 0.75rem 0.5rem rgba(0,255,255, 0.4) inset,
0 0.25rem 0.5rem 0 rgba(0, 70, 207, 1) inset;
}
#content {
display: flex;
align-self: center;
flex-flow: column wrap;
}
#page {
display: flex;
flex-flow: column wrap;
justify-content: center;
}