-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
93 lines (80 loc) · 1.74 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
@import url('https://fonts.googleapis.com/css2?family=Croissant+One&display=swap');
body {
padding: 10px;
background-color: #000014;
width: 100%;
height: 100vh;
margin: 0;
padding: 0;
overflow: hidden;
color: #c2c5ff;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h1,
h4 {
text-align: center;
margin-bottom: 20px;
color: rgba(255, 217, 0, 0.61);
font-family: 'Croissant One', cursive;
}
h1 {
font-size: 5vw;
}
.word-counter {
font-family: Arial, sans-serif;
color: #bfd0ff;
margin: auto;
width: 90%;
height: auto;
margin-top: 10px;
background-color: #00006e;
padding: 50px 20px 50px 20px;
padding-top: 10px;
border-radius: 10px;
box-shadow: 1px 1px 5px 1px #1b37b4;
text-align: center;
}
.word-counter:hover {
box-shadow: 1px 1px 15px 2px #1b37b4;
}
#colorer {
color: blue;
}
.editor {
display: flex;
flex-direction: column;
padding: 5px;
}
textarea {
background-color: #191930;
border: 1px solid #1e1e50;
padding: 10px;
color: #ffffff;
width: 98%;
border-radius: 10px;
height: 300px;
}
#result {
text-align: left;
min-height: 25px;
padding: 5px;
font-size: 20px;
font-weight: 600;
}
#check {
border-radius: 25px;
background-color: #5b5bf5;
padding: 10px;
border: 1px solid #3c5ffa;
width: 150px;
}
@media only screen and (min-width: 1024px) {
.word-counter {
width: 80%;
max-height: 450px;
height: 450px;
}
h1 {
font-size: 30px;
}
}