-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (77 loc) · 1.4 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
89
90
91
92
* {
padding: 0;
margin: 0;
font-family: 'Itim';
}
h1 {
font-size: 4em;
text-align: center;
}
.intro h2 {
font-size: 2.1em;
padding-bottom: 10px;
}
.intro p {
text-align: justify;
font-size: 1.4em;
}
.interface h2 {
font-size: 2.1em;
}
.interface p {
font-size: 1.4em;
}
.instructions {
background-color: rgba(0, 67, 119, 0.219);
text-align: center;
border-radius: 5px;
border-style: solid;
border-color: #047;
padding: 10px;
}
body {
background-color: #ededed;
padding: 30px;
}
button {
padding: 7px;
background-color: #047;
color: #fff;
font-size: 19px;
border: none;
margin: 20px auto;
display: block;
border-radius: 5px;
}
button:hover {
background-color: rgba(0, 67, 119, 0.747);
transition: 1s;
}
button:not(hover) {
transition: 1s;
}
input {
width: 50%;
margin: 10px 25%;
}
.interface, .result {
display: none;
}
.optionsLeft, .optionsRight {
display: none;
text-align: center;
}
.right {
display: none;
}
.show-frequency, .show-frequency-left, .show-frequency-right {
background-color: #047;
color: #fff;
padding: 30px;
font-size: 20px;
margin-top: 25px;
text-align: center;
border-radius: 5px;
border-color: rgb(0, 15, 27);
border-style: solid;
}