-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (45 loc) · 878 Bytes
/
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
/* body{
background-color: black;
color: white;
margin: 2rem;
} */
.app_title{
margin-left: 8rem;
font-size: 2rem;
font-weight: bold;
}
.container{
border: 0.1rem solid black;
border-radius: 1.5rem;
margin: 2rem;
padding: 1rem;
max-width: 18rem;
background-color: rgb(186, 244, 186);
}
.row{
display: flex;
flex-wrap: wrap;
/* justify-content: space-between; */
}
.key{
border: 0.2rem solid blcak;
border-radius: 2rem;
/* color: white; */
width: 3.5rem;
height: 3.5rem;
font-size: 1.5rem;
cursor: pointer;
margin: 0.3rem;
}
.key:hover{
background-color: rgb(43, 239, 17);
color: white;
}
.expression{
font-size: 2rem;
padding-bottom: 0.4rem;
}
.exp_result{
font-size: 2rem;
padding-bottom: 1.411123rem;
}