-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (53 loc) · 1.28 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
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;700;800;900&family=Merriweather&family=Rubik:wght@300;400;500;600;700;800&display=swap');
body {
display: flex;
font-family: 'Inconsolata', monospace;
font-family: 'Merriweather', serif;
font-family: 'Rubik', sans-serif;
background-color: rgb(15, 21, 75);
color:white;
}
.main {
width:100vw;
height: 100vh;
background-color: rgb(15, 21, 75);
color:white;
padding: 20px;
border-radius: 5px;
text-align: center;
}
#entertext {
width: 100%;
height: 100%;
font-family: 'Inconsolata', monospace;
font-family: 'Merriweather', serif;
font-family: 'Rubik', sans-serif;
font-size: 16px;
border: 1px solid #6ea1d8;
border-radius: 3px;
margin-bottom: 10px;
word-wrap: break-word;
text-align: initial;
background-color: #d5e5f7;
color:#0f0f0f;
}
button {
background-color: #cad6e2;
color: #0f0f0f;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 3px;
cursor: pointer;
margin-bottom: 4px;
}
button:hover {
background-color: #0056b3;
color: whitesmoke;
}
.wordpara {
font-size: 18px;
}
#wordCount {
font-weight: bold;
}