-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (63 loc) · 1.09 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
*{
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
body{
background-color: #2980b9;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin : 0;
}
h1{
color: white;
font-size: 40px;
}
h2{
margin-bottom: 0;
text-align: center;
}
.card{
background-color: white;
padding: 24px;
min-width: 300px;
border-radius: 24px;
}
.card input{
width: 100%;
padding: 8px;
margin-top: 4px;
border-radius: 4px;
border: solid 1px #ecf0f1;
}
.card .input-group{
margin-top: 8px;
}
.card button{
background-color:#27ae60 ;
border: none;
color: white;
padding: 8px;
width: 100%;
font-size: 16px;
margin-top: 8px;
}
.result-values{
display: flex;
justify-content: center;
flex-wrap: wrap;
max-width: 60vw;
}
.result-values .result-value{
background-color:#e67e22 ;
color: white;
margin: 8px;
width: 48px;
height: 48px;
border-radius: 50%;
text-align: center;
line-height: 48px;
font-size: 24px;
}