-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
60 lines (56 loc) · 935 Bytes
/
Copy pathmain.css
File metadata and controls
60 lines (56 loc) · 935 Bytes
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
*{
margin: 0px;
padding: 0px;
}
body{
font-family: sans-serif;
background-color:#942d9954;
display: flex;
align-content: center;
justify-content:center;
padding: 15%;
}
.container{
box-shadow: 0 10px 15px 15px rgba(50,50,50,0.4);
}
.body{
padding: 30px;
align-items: center;
justify-content:center;
background-color: #FFF;
line-height: 30px;
font-size: 15px;
}
#heading{
border-bottom: 3px solid red;
text-align: center;
background-color:green;
height: 20px;
padding: 10px;
font-size: 1.3em;
color: #FFF;
}
#btn{
padding: 5px;
background-color: grey;
border: 2px solid blue;
border-radius: 10%;
margin: 10px;
margin-left: 150px;
}
hr{
margin-top: 10px;
height:2px;
}
.calc{
margin-top: 4px;
line-height: 15px;
}
#calculation{
font-size: 10px;
}
#author{
color: red;
font-size: 10px;
float: right;
}