-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (56 loc) · 1.36 KB
/
Copy pathstyles.css
File metadata and controls
65 lines (56 loc) · 1.36 KB
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
body {
background: rgb(209, 243, 178);
}
header {
text-align: center;
font-family: 'Lucida Sans', Helvetica, sans-serif;
}
.play_area {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 5px;
background-color: #f2f2f2;
padding: 20px;
margin-right: 4px;
}
.functions {
font-size: 14px;
font-family: 'Lucida Sans', Helvetica, sans-serif;
}
.fancy_button {
border: 0;
line-height: 2.5;
padding: 0 20px;
font-size: 1rem;
text-align: center;
color: #fff;
text-shadow: 1px 1px 1px #000;
border-radius: 10px;
background-color: rgb(20, 160, 66);
background-image: linear-gradient(to top left,
rgba(0, 0, 0, .2),
rgba(0, 0, 0, .2) 30%,
rgba(0, 0, 0, 0));
box-shadow: inset 2px 2px 3px rgba(255, 255, 255, .6),
inset -2px -2px 3px rgba(0, 0, 0, .6);
}
.fancy_button:hover {
background-color: rgb(21, 6, 104);
}
.fancy_button:active {
box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6),
inset 2px 2px 3px rgba(0, 0, 0, .6);
}
.button {
border: none;
display: flex;
justify-content: center;
align-items: center;
}
.result{
font-family: 'Lucida Sans', Helvetica, sans-serif;
font-size: 16px;
text-align: center;
}