-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
94 lines (86 loc) · 1.81 KB
/
Copy pathstyles.css
File metadata and controls
94 lines (86 loc) · 1.81 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
body {
display: flex;
justify-content: center;
align-items: center;
/* height: 97vh; */
background-color: #eee;
margin: 0;
padding: 0;
}
.container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 10px;
width: 100%;
padding: 30px 0;
}
textarea {
margin: 0 auto;
padding: 5px;
width: 100%;
height: 150px;
font: 2rem Verdana, Sans-Serif;
color: #282828;
background: #fff;
border: 1px solid #f9f9f9;
border-radius: 5px;
display: flex;
align-items: center;
}
.keyboard {
border-spacing: 1em 0.5em;
left: 10%;
margin: 20px auto;
overflow-y: scroll;
position: static;
}
.row {
display: flex;
/* background: #f4f7f8; */
/* border-bottom: 1px solid #FFF; */
margin-bottom: 5px;
gap: 10px;
align-items: center;
justify-content: center;
}
h1 {
text-align: center;
}
button {
display: flex;
font-size: 30px;
font-family: Palatino;
color: saddleBrown;
padding: 2rem;
/* margin-right:0.5rem;
margin-left:0.5rem; */
text-align: center;
width: 33.3333%;
border: 1px;
border-radius: 10px;
background: linear-gradient(to bottom, lightSalmon, antiqueWhite);
}
#spacebar {
width: 500px;
}
/* background: #70e1f5; */
/* fallback for old browsers */
/* Chrome 10-25, Safari 5.1-6 */
/* background: -webkit-linear-gradient(lightSalmon, antiqueWhite);
background: -moz-linear-gradient(lightSalmon, cadetBlue);
background: -o-linear-gradient(lightSalmon, cadetBlue); */
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
button:hover {
cursor: default;
box-shadow: 0 5px 15px peru;
opacity: 0.6;
}
button:active {
background-color: linear-gradient(to bottom, lightSalmon, antiqueWhite);
opacity: 1;
box-shadow: 0 5px 15px peru;
opacity: 1;
transform: translateY(4px);
}