-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (95 loc) · 2.04 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
* {
box-sizing: border-box;
font-family: 'Digital7', 'Lucida Sans', sans-serif;
padding: 0;
margin: 0;
}
@font-face {
font-family: 'Digital7';
src: url(Font/Digital7-rg1mL.ttf);
}
html {
height: 100vh ;
display: flex;
justify-content: center;
align-items: center;
}
body {
background: rgb(205,255,93);
background: linear-gradient(135deg, rgba(205,255,93,1) 0%, rgba(161,235,255,1) 50%, rgba(230,150,221,1) 100%);
}
.calculator-container {
background-image: linear-gradient(to bottom, #fad0c4 0%, #ffd1ff 100%);;
border: solid #00c6fb 10px;
box-shadow: 8px 8px #006986;
border-radius: 25px;
height: 650px;
width: 450px;
padding: 30px 15px;
gap: 20px;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.screen {
border: solid #ff084686 5px;
border-radius: 25px;
padding: 0px 10px;
display: flex;
align-items: center;
justify-content: end;
overflow-wrap: break-word;
word-break: break-all;
font-size: 3.5em;
background-color: rgba(255, 255, 255, 0.5);
min-height: 95px;
}
.button-container {
border: solid #ff084686 5px;
border-radius: 25px;
padding: 10px;
display: flex;
flex-direction: column;
gap: 10px;
}
.big-buttons {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.number-buttons {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 6px;
}
.all-clear {
background-color: #E17E52;
}
.all-clear:hover {
background-color: #e17e52bf;
}
.delete {
background-color: #A9BF84;
}
.delete:hover {
background-color: #a9bf84ba;
}
.operator {
background-color: #B2DEF7;
}
.operator:hover {
background-color: #b2def7d4;
}
button {
font-size: 2em;
padding: 10px 20px;
border-radius: 50px;
border: solid #f9d423 2px;
background-color: rgba(255, 255, 255, 0.5);
min-width: 23%;
box-shadow: 3px 3px #f9d52354;
}
button:hover{
background-color: rgba(255, 255, 255, 0.8);
}