-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
85 lines (85 loc) · 1.46 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
color: white;
font-family: system-ui;
background: #101415;
background: #000103;
overflow-x: hidden;
}
#text{
font-family: cursive;
margin: 17px;
margin-top: 26px;
}
.app{
display: flex;
width: 64%;
flex-wrap: wrap;
margin: auto;
flex-direction: column;
text-align: center;
}
.Keybord{
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-evenly;
}
#key{
background: #000103;
border: 1px solid #0c0cce;
border-radius: 5px;
padding: 10px 21px;
margin: 8px 3px;
color: black;
color: white;
transition: .5s ease-in-out;
font-size: 25px;
}
#key:active{
background: #6b6be8;
color: white;
}
#key:hover{
cursor: pointer;
}
.textArea{
text-align: center;
width: 100%;
margin: auto;
margin-bottom: 15px;
margin-top: 10px;
}
.space{
width: 69%;
margin: 14px auto !important;
border-radius: 3px;
}
textarea{
background: #363c3f;
width: 100%;
height: 150px;
max-width: 90%;
max-height: 150px;
min-width: 90%;
min-height: 150px;
margin: 0px 10px;
border-radius: 10px;
padding: 10px;
font-family: sans-serif;
font-size: 23px;
color: white;
outline: none;
}
::-webkit-scrollbar{
background: none;
width: 8px;
}
::-webkit-scrollbar-thumb{
background-color: #202124;
border-radius: 30px;
}