-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
60 lines (53 loc) · 1.06 KB
/
styles.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
body {
background-color: cornsilk;
color: midnightblue;
display: flex;
font-family: AppleGothic, Ariel, Helvetica, sans-serif;
font-size: 32px;
justify-content: center;
margin-top: 5%;
text-align: center;
}
.wrapper>h1 {
font-size: 6rem;
margin: 5rem 0 0 0;
transition: all 0.4s;
position: relative;
}
.recursions {
width: 100%;
}
.fibNoRecursionButton,
.fibRecursionButton,
.clearButton {
background-color: ivory;
border-radius: 10px;
box-shadow: 10px 5px 5px lightblue;
margin: 2% 5%;
padding: 0.25rem;
height: auto;
width: 60%;
}
.fibRecursionButton {
width: 53%;
}
.clearButton {
width: 20%;
}
.buttonText {
color: darkblue;
font-size: 2.25em;
padding: 2%;
}
.fibNoRecursionResult>textarea,
.fibRecursionResult>textarea {
background-color: ivory;
color: midnightblue;
font-family: AppleGothic, Ariel, Helvetica, sans-serif;
font-size: 1.75rem;
margin: 0 auto;
padding: 1em;
height: 6.5rem;
width: 50%;
transition: all 0.35s ease-in-out;
}