-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (47 loc) · 799 Bytes
/
style.css
File metadata and controls
47 lines (47 loc) · 799 Bytes
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
body {
background: linear-gradient(90deg, #010031, #051a52);
display: flex;
justify-content: center;
}
.container {
background: #262257;
width: 350px;
height: 500px;
border-radius: 5px;
border: #ffffff 2px solid;
margin: 1%;
}
.screenContainer {
width: 100%;
padding: 10px;
box-sizing: border-box;
}
.screen {
background: #ffffff;
resize: none;
width: 100%;
height: 80px;
border: none;
border-radius: 5px;
padding: 10px;
font-size: 24px;
box-sizing: border-box;
}
.buttonsContainer {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 10px;
padding: 20px;
}
button {
background: #4a4a8a;
color: white;
border: none;
border-radius: 5px;
padding: 20px;
font-size: 18px;
cursor: pointer;
}
button:hover {
background: #6a6ab8;
}