-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
83 lines (65 loc) · 1.4 KB
/
styles.css
File metadata and controls
83 lines (65 loc) · 1.4 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
*{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
margin: 0%;
padding: 0%;
box-sizing: border-box;
align-items: center;
justify-content: center;
}
.body{
width: 100vw;
height: 200vh;
display:flex;
justify-content: center;
align-items:center;
background: linear-gradient(45deg,rgb(63, 59, 59),dimgrey);
background-color: rgb(21, 22, 22);
}
.heading{
margin-top: 40px;
color: firebrick;
font-style: italic;
justify-content: center;
text-align: center;
}
button{
border-radius: 50%;
border: 1px solid;
width: 60px;
height: 60px;
margin: 10px;
background-color: rgb(117, 121, 124);
color: rgb(32, 32, 32);
cursor: pointer;
box-shadow: 0px 3px 5px red ;
}
.input{
width: 300px;
border: transparent;
padding: 20px;
color: rgb(17, 180, 180);
background-color:rgb(81, 81, 90);
margin: 10px;
box-shadow: 0px 3px 15px rgb(204, 6, 6);
font: 40px;
text-align: right;
justify-content: center;
}
input::placeholder{
color: hsl(0, 3%, 8%);
}
.calculator{
height: 100vh;
width: 100vw;
border: 4px solid cornsilk;
padding:0px;
margin: 0px ;
border-radius: 0px;
background: dimgrey;
box-shadow: 0px 3px 15px grey;
text-align: center;
background-color:black;
}
.container{
margin-top: 40px;
}