-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
87 lines (75 loc) · 1.3 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
html{
background-color: #162c33;
}
.calc-box, .user-area
{
display: flex;
justify-content: center;
margin-top: 5em;
}
.calc-body{
display: flex;
flex-direction: column;
}
.user-area{
margin: 1em;
gap: 10px;
flex-wrap: wrap;
}
.calc-body{
background-color: #000000;
border-radius: 12px;
max-height: 40em;
max-width: 25em;
}
.calc-display{
display: flex;
flex-wrap: wrap;
margin: 1em;
height: 6em;
padding: 1em;
background-color: #c8c8c8;
border-radius: 8px;
}
.calc-result{
align-self: flex-end;
font-size: 40px;
}
.calc-function, .calc-result {
text-align: right;
flex-basis: 100%;
color: #000000;
font-family: 'Orbitron', sans-serif;
}
button {
font-size: 2em;
flex: 1 1 20%;
color: #edbc28;
text-decoration: none;
padding: 0;
margin: 0;
border-radius: 12px;
background-color: #000000;
transition-duration: 0.4s;
border: none;
height: 70px;
font-family: 'Montserrat', sans-serif;
}
button:hover{
background-color: #161515;
}
.operator{
color: #ffffff;
}
footer{
font-family: 'Montserrat', sans-serif;
color: #ffffff;
margin-top: 5em;
display: flex;
justify-content: center;
gap: 0.5em;
}
footer img{
width: 1em;
height: auto;
}