forked from Wilson-Pedro/keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (65 loc) · 1.15 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
@charset "UTF-8";
*{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}
body{
height: 100vh;
max-width: 100vw;
background: linear-gradient(45deg, black, crimson);
}
main {
height: 80vh;
display: flex;
align-items: center;
justify-content: center;
}
div#container {
background-color: transparent;
}
div#res {
background-color: white;
border: 0;
margin-bottom: 8rem;
padding: 6px;
border-radius: 3px;
box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.603);
height: 2.5vh;
font-size: 12pt;
max-width: 86vw;
}
div#teclado {
background-color: rgb(15, 15, 15);
padding: 4px;
}
table {
background-color: rgb(53, 52, 52);
color: rgb(236, 233, 233);
width: 60vw;
}
td {
border: 1px solid black;
padding: 4px;
text-align: center;
cursor: pointer;
border-radius: 2px;
}
td.top {
width: 2vw;
height: 2vh;
font-size: 10pt;
}
td.left {
text-align: left;
padding: 5px;
}
td:hover {
background-color: black;
}
footer {
color: rgb(233, 112, 112);
text-align: center;
font-size: 17pt;
font-style: italic;
}