-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (70 loc) · 1.32 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
body{
display: flex;
align-items: center;
justify-content: center;
}
.outer_part{
border-radius: 10px;
padding-top: 20px;
padding-bottom: 20px;
padding-left: 20px;
padding-right: 20px;
background-color: rgb(227, 227, 227);
height: 350;
width: 200px;
text-align: center;
}
#input{
border-radius: 10px;
border: none;
float: right;
font-size: 20px;
height: 40px;
width: 200px;
}
#input:focus{
outline: none;
}
#input[placeholder]{
padding-left: 10px;
}
#logo{
padding-left: -30px;
font-size: 20px;
color: rgb(66, 66, 66);
font-family: sans-serif;
}
.number{
border: none;
height: 40px;
width: 40px;
font-size: 17px;
background-color: white;
}
.operater{
border: none;
height: 40px;
width: 40px;
font-size: 17px;
background-color: white;
}
.equal{
border: none;
height: 40px;
width: 40px;
font-size: 17px;
color: white;
background-color: rgb(7, 223, 104);
}
.clear{
border: none;
height: 40px;
width: 40px;
font-size: 17px;
color: white;
background-color: rgb(223, 7, 7);
}
.number:hover, .operater:hover{
border-radius: 10px;
border: 1px solid black;
}