-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
62 lines (55 loc) · 988 Bytes
/
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
* {
margin: 0;
padding: 0;
}
body {
background-color: #272640;
color: #179092;
font-family:'Courier New', Courier, monospace;
}
main {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
position:absolute;
background: #302f4d;
padding:20px;
border: 1px solid #45335c;
width:300px;
text-align:center;
}
h1 {
text-align:center;
font-size: 16px;
color:#5dc7c9;
font-weight: normal;
margin-bottom: 10px;
}
#calcular {
border: none;
padding:5px;
cursor: pointer;
background-color: #292844;
color: white;
margin-top:10px;
border: 1px solid #45335c;
font-size:16px;
}
input {
background-color: #292844;
color: white;
padding:5px;
border: 1px solid #45335c;
}
.result {
background-color: #292844;
color: white;
margin-top:10px;
border: 1px solid #45335c;
padding:20px;
}
footer {
color: #065a60;
margin-top:20px;
font-size:12px;
}