-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (75 loc) · 1.23 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
*{
margin:0;
padding:0;
box-sizing: border-box;
color:white
}
body{
height: 100vh;
width: 100vw;
display: flex;
justify-content: center;
align-items: center;
}
.main{
height:70%;
width: 27%;
background-color:#212121da;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius:15px;
}
.inputbox{
height: 30%;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.box{
display: flex;
height: 30px;
width: 100%;
gap:40px;
padding-left: 60px;
margin: 15px;
}
.box p{
font-size: large;
/* color: white; */
}
.box input{
height: auto;
border-radius: 5px;
outline: none;
color:yellow;
background-color:white;
color:black;
border:1px solid green;
}
h2{
font-weight: 800;
font-size: 2rem;
}
#calc{
height: 40px;
width: 170px;
background-color:brown;
margin-bottom: 30px;
border-radius: 10px;
font-size: large;
}
details{
height: 40px;
width: 300px;
text-align: center;
cursor: pointer;
margin-top: 20px;
}
summary{
background-color: rgb(89, 0, 255);
border-radius: 5px;
}