-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
64 lines (55 loc) · 1.02 KB
/
main.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
body{
background: linear-gradient(to left, aqua, orange);
line-height: 0.5;
text-align: center;
}
.main{
width: 500px;
padding-bottom: 100;
position: absolute;
top:40%;
left:50%;
transition:0.25px;
transform: translate(-50%,-50%);
justify-items: center;
text-align: center;
}
.card{
box-shadow: 0 4px 8px 0;
transition: 0.4s;
width: 300px;
text-align: center;
font-size: 16px;
float: left;
margin: 10px;
}
h1{
font-size: 30px;
margin-top: 40px;
color: antiquewhite;
text-align: center;
}
.values{
width: 240px;
text-align: center;
border: 2px solid transparent;
border-radius: 5px;
font-size: 20;
padding: 10px 0px;
transition: border 0.5px;
}
#buttons{
border:3px solid;
background-color: green;
color: white;
font-size: 16px;
border-radius: 5px;
cursor: pointer;
text-align: center;
width: 80px;
height: 40px;
margin-left: 40px;
}
label{
font-size: 20px;
}