-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (63 loc) · 1.12 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
body {
max-width: 800px;
margin: 30px auto;
border-radius: 5%;
border: 15px solid darkblue;
}
h1 {
text-align: center;
}
.box1 {
margin: auto;
text-align: center;
border-top-left-radius: 4%;
border-top-right-radius: 4%;
color: darkblue;
background-image: linear-gradient(
300deg,
hsl(250deg 87% 61%) 24%,
hsl(21deg 70% 65%) 46%,
rgb(64, 209, 20)
);
}
.box1-content {
max-width: 100%;
padding: 20px;
}
#input-no {
font-size: 100px;
margin: 0;
}
.box2 {
margin: 0;
align-items: center;
text-align: center;
background-color:black;
color: lightsteelblue;
padding: 20px;
}
span {
font-size: 30px;
}
#length, #volume, #mass {
font-size: 1.4rem;
}
#input-val{
border: none;
width: 200px;
font-size: 1.3rem;
font-weight: bold;
margin: 5px;
text-align: center;
}
#btn {
display: block;
border: none;
width: 200px;
font-weight: bold;
color: whitesmoke;
background-color: black;
padding: 10px;
margin: auto;
border-radius: 5px;
}