-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimc.css
47 lines (44 loc) · 920 Bytes
/
imc.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
.input {
display: flex;
width: 300px;
height: 50px;
justify-content: space-between;
align-items: center;
}
.input input {
width: 200px;
height: 50px;
border-radius: 5px;
border:none;
outline: 0;
font: bold 1.5rem serif;
text-align: center;
}
.input label {
font: bold 1.5rem serif;
}
button{
width: 300px;
height: 40px;
font: bold 1.2rem serif;
background: #000;
color: rgb(255,198,0);
outline: none;
border-radius: 5px;
cursor: pointer;
}
.result{
display: flex;
margin-top: 20px;
align-items: center;
width: 300px;
height: 150px;
border-radius: 5px;
font: italic 1.5rem serif;
box-shadow: 0px 0px 10px black;
background: #000;
color: rgb(255,198,0);
padding: 20px;
box-sizing: border-box;
user-select: none;
}