-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
87 lines (82 loc) · 1.28 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-size: 16px;
font-family: Roboto;
background-color: #f2f5ea;
}
.whole-page {
width: 100vw;
}
.container {
margin: 4em auto 0;
width: 420px;
background-color: #815355;
padding: 20px;
border-radius: 0.5em;
box-shadow: 10px 10px#523249;
}
.top-row {
display: flex;
justify-content: space-evenly;
}
.top-row-button {
flex: 1;
border-radius: 0.5em;
background-color: #c3b299;
text-align: center;
font-size: 5;
margin: 10px 20px;
padding: 10px;
cursor: pointer;
box-shadow: 5px 5px #523249;
}
.top-row-button:active {
box-shadow: none;
}
.row {
overflow: auto;
}
.row:after {
content: "";
clear: both;
display: table;
}
#output {
background-color: #dbebc0;
width: 100%;
height: 40px;
border-radius: 0.5em;
padding-right: 10px;
font-size: 30px;
}
.button {
display: inline-block;
float: left;
width: 85px;
line-height: 35px;
text-align: center;
border-radius: 0.5em;
background-color: #cbd4c2;
cursor: pointer;
margin: 5px;
overflow: auto;
}
.button:after {
content: "";
clear: both;
display: table;
}
.button:hover {
box-shadow: 0px 0px 15px #523249;
background-color: #c3b299;
}
.button:active {
color: white;
}
#output {
text-align: right;
}