-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
80 lines (70 loc) · 1.33 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
html{
height: 100%;
background-color: #f6f6f6;
font-family: Arial, Helvetica, sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
height: 100%;
background-color: white;
border: 1px solid purple;
}
#main{
background-color: #aaaaaa;
box-sizing: border-box;
height: 500px;
width: 400px;
border-radius: 20px;
border: 5px solid black;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
#screen{
box-sizing: border-box;
height: 110px;
width: 100%;
background-color: #eeeeee;
border-radius: 10px;
border: 2px solid black;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: end;
}
#screenTop{
font-size: 1.8em;
}
#screenBottom{
box-sizing: border-box;
font-size: 3.5em;
line-height: 0.9em;
}
.btn-lg{
width: 48%;
text-align: center;
}
.btn-sm{
width: 22%;
}
.btn{
height: 50px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 5px;
font-size: 1.8em;
}
#btn-area{
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: space-between;
height: 320px;
padding-bottom: 10px;
}