-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (59 loc) · 1.28 KB
/
style.css
File metadata and controls
71 lines (59 loc) · 1.28 KB
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
html{
background: #ecf0f1 fixed; /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.calci {
width:300px;
border: 3px;
border-color: #9cb6c7;
border-style: ridge;
background-color: black;
border-radius: 10px;
box-shadow: 5px 6px 5px 0px;
background: #304352; /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #d7d2cc, #304352); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #d7d2cc, #304352); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.flex_container {
display: flex;
justify-content: center;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
height: 90vh;
}
form {
padding: 5px;
margin: 2px;
}
input {
margin: 5px 3px 8px 2px;
padding: 8px;
font-size: 30pt;
border-color: #7f8c8d;
}
input[type="String"] {
width: 90%;
}
input[type="button"]:hover {
background: linear-gradient(to top, #ada996, #f2f2f2, #dbdbdb, #eaeaea);
border-color: #f2f2f2;
}
.share {
display: flex;
justify-content: center;
flex-direction: row;
margin-bottom: 10px;
}
.fa-facebook-official {
color: blue;
}
.fa-whatsapp {
border: 0;
color: green;
margin-left: 20px;
}
footer {
font-style: oblique;
align-self: flex-end;
text-align: center;
}