-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcalculator.css
More file actions
89 lines (81 loc) · 1.64 KB
/
Copy pathcalculator.css
File metadata and controls
89 lines (81 loc) · 1.64 KB
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
body{
height:max-content;
background: linear-gradient(to right,#0a0a0a,#3a4452);
}
h2{
text-align: center;
color: blanchedalmond;
}
.layout{
border:0px;
padding: 10px;
padding-top: 30px;
border-radius:10px;
box-shadow: 0 0 10px gray;
}
.container{
display: flex;
justify-content: center;
align-items: center;
padding-top: 160px;
}
.placeholder{
padding-bottom: 5px;
}
input{
height: 50px;
width: 250px;
border:0px;
font-size: large;
color:white;
background: linear-gradient(to right,#0a0a0a,#3a4452);
text-align: right;
}
input::placeholder{
color:azure;
}
.buttons{
margin-top: 10px;
display:flex;
justify-content: center;
align-items: center;
}
.r{
height:50px;
width: 50px;
border-radius:50%;
margin:5px;
border: 0px;
background:linear-gradient(to left,gray,black);
box-shadow: -2px -2px 8px rgb(152, 48, 48);
color: white;
font-size: large;
cursor: pointer;
}
.row1 button{
color: rgb(220, 231, 18);
}
.coloum{
color: rgb(220, 231, 18);
height:50px;
width: 50px;
border-radius:50%;
margin:5px;
border: 0px;
background:linear-gradient(to left,gray,black);
box-shadow: -2px -2px 8px rgb(152, 48, 48);
font-size: large;
cursor: pointer;
}
.equals{
height:50px;
width: 50px;
border-radius:50%;
margin:5px;
border: 0px;
background-color: rgb(240, 128, 7);
box-shadow: -2px -2px 8px rgb(152, 48, 48);
color: white;
font-size: large;
cursor: pointer;
}