-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
93 lines (87 loc) · 2.02 KB
/
main.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
93
* {
box-sizing: border-box;
}
body{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: bolder;
font-size: 32px;
text-align: center;
background-color: whitesmoke;
/* background-image: url('classroom.png');
background-size: cover;
background-repeat: no-repeat; */
}
#flipper{
background-color: pink;
font-family: 'Arial Narrow Bold', sans-serif;
font-size: 16px;
border: 1px color #333;
border-radius: 10px;
padding:0.5em;
margin: 1em;
align-self: left;
width: 12em;
position: absolute;
-webkit-box-shadow: 5px 5px 5px -2px #000000;
box-shadow: 5px 5px 15px -2px #000000;
}
#container{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
background-color: grey;
border-top: 1px solid #333;
border-right: 1px solid #333;
border-right: 10px solid #333;
border-bottom: 10px solid #333;
border-radius: 25px;
width: 50%;
max-width: 400px;
min-width: 300px;
height: 80%;
margin-left: auto;
margin-right: auto;
padding: 1rem 1rem 1.5rem 1rem;
transition: transform 2s;
-webkit-box-shadow: 5px 5px 5px -2px #000000;
box-shadow: 5px 5px 15px -2px #000000;
}
.flipped{
transform: rotate(180deg);
transition: 2s;
}
.button{
background-color: #BBB;
/* border: 1px solid black; */
width: 30%;
/* height: auto; */
margin: 1%;
border-radius: 15px;
padding: 0.5rem;
-webkit-box-shadow: 5px 5px 5px -2px #000000;
box-shadow: 5px 5px 15px -2px #000000;
}
.number{
}
.operator{
background-color: #999;
}
.display{
width: 90%;
height: 80px;
margin: 25px 0px;
background-color: #238912;
border-radius: 5px;
border-top: 3px solid #343;
border-left: 3px solid #343;
border-right: 1px solid #343;
border-bottom: 1px solid #343;
font-size: 56px;
font-family: 'VT323', monospace;
color: white;
overflow: hidden;
text-align: right;
padding: 1rem;
}