-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
100 lines (79 loc) · 1.45 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
body {
background-color: #ddd;
margin: 0;
font-family: 'Robot', sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.container {
position: relative;
padding: 50px;
background-color: antiquewhite;
border-radius: 40px;
}
.textarea {
width: 100%;
display: flex;
justify-content: center;
margin-bottom: 2rem;
}
textarea {
width: 100%;
height: 150px;
resize: none;
padding: .5rem;
font-size: 1.2rem;
font-weight: bold;
outline: none;
border: 2px solid;
border-radius: 0.5rem;
}
button {
border: none;
border-radius: 5px;
background-color: rgb(59, 59, 59);
color: white;
cursor: pointer;
width: 55px;
height: 55px;
}
button:hover {
opacity: 0.5;
}
.first-row, .second-row, .third-row, .fourth-row, .fifth-row {
margin: 10px 0 0 0;
}
#colek {
width: 40px;
}
.backspace, .enter {
width: 120px;
}
.left-shift {
width: 120px;
padding-top: 10px;
}
.right-shift {
width: 160px;
padding-top: 11px;
}
.tab {
width: 80px;
}
#backslash {
width: 80px;
}
.caps-lock {
width: 100px;
}
#space {
width: 600px;
}
#ctrl {
width: 135px;
padding-top: 11px;
}
.upper { text-transform: uppercase;}