-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (67 loc) · 1.2 KB
/
style.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
body {
box-sizing: border-box;
display: flex;
justify-content: center;
background-color: red;
}
.bg {
background-color: rgba(3, 3, 3, 0.815);
}
.container {
display: flex;
flex-direction: column;
justify-content: space-around;
width: auto;
height: auto;
border: none;
border-radius: 10px;
}
.text-container {
display: flex;
justify-content: center;
padding-top: 20px;
margin-bottom: 20px;
}
#screen {
width: 90%;
height: 50px;
border-radius: 5px;
border: none;
color: #fefefe;
text-align: right;
font-size: large;
font-style: oblique;
padding-right: 20px;
}
.button-container {
display: flex;
justify-content: space-around;
margin-bottom: 15px;
}
.top-btn-container {
margin: 20px 0;
}
.btns {
color: #fefefe;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: large;
font-style: italic;
width: 40px;
height: 30px;
border: none;
border-radius: 15px;
box-shadow: 3px 3px 10px black;
background-color: rgba(3, 3, 3, 0.1);
cursor: pointer;
}
.changebg {
background-color: #c9c0c0;
border: none;
color: black;
}
.btnEquals {
display: flex;
width: 90%;
padding-top: 5px;
justify-content: center;
}