-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (84 loc) · 1.67 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
92
93
94
95
96
97
98
99
100
101
102
.calculadora-seccion, .tabla-masas{
display:flex;
gap: 2em;
justify-content: space-between;
flex-wrap: wrap;
margin: 1em;
}
.card{
background-color: #fff;
padding:0 2em 2em 2em;
}
body{
padding: 2em;
background-color: #18ab29;
}
h1{
font-size: 40px;
color: #247300;
font-family: 'DM Sans', sans-serif;
}
h2{
font-size: 32px;
color: #247300;
font-family: 'DM Sans', sans-serif;
}
p, label, tr,th, input{
font-size: 16px;
line-height: 1.2em;
font-family: 'Inter', sans-serif;
}
.btn {
background:linear-gradient(to bottom, #44c767 5%, #5cbf2a 100%);
background-color:#44c767;
border-radius:42px;
border:1px solid #18ab29;
display:inline-block;
cursor:pointer;
color:#ffffff;
padding:1em 2em;
text-decoration: none;
margin: 10px;
}
.btn:hover {
background:linear-gradient(to bottom, #5cbf2a 5%, #44c767 100%);
background-color:#5cbf2a;
}
.btn:active {
position:relative;
top:1px;
}
#compuesto {
border-color:#cccccc;
border-style:solid;
padding: 1em;
font-size:16px;
border-radius:18px;
width: 60%;
resize: vertical;
}
#compuesto:focus { outline:none; }
#tabla{
margin: 0 auto;
border-collapse: collapse;
border-width: 2px;
border-color: #338017;
border-style: solid;
color: #000000;
}
#tabla td,
#tabla th {
border-width: 2px;
border-color: #338017;
border-style: solid;
padding: 1ch;
text-align: center;
}
.btn-contact-details {
color:#18ab29;
text-shadow: 0.5px 0.5px 0.5px #1f1f1f;
transition: transform 0.3s ease-out;
margin-top: 15px;
margin-right: 20px;
text-decoration: none;
}