-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
111 lines (96 loc) · 2.12 KB
/
index.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
101
102
103
104
105
106
107
108
109
110
111
body {
height: 100vh;
background-image: url('bg.webp');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.topic {
font-size: 3em;
font-family: 'Handlee', cursive;
}
.container {
width: 90%;
height: max-content;
border-radius: 20px;
background-image: linear-gradient(to top, rgba(238, 121, 121, 0.356), rgba(38, 193, 214, 0.336));
box-shadow: 5px 5px 5px black;
}
.container p {
font-size: 2em;
color: #ff6a00;
}
.MainContentArea {
font-family: 'BIZ UDPMincho', serif;
font-size: 1.5em;
font-weight: bolder;
display: none;
}
.btn {
font-size: 0.8em;
border-radius: 10px;
}
textarea {
width: 100%;
height: 5cm;
display: none;
}
.smallheading {
font-size: 1.1em;
}
.ShowSent {
font-size: 1.2em;
border-radius: 20px;
background-image: linear-gradient(to top, rgba(238, 121, 121, 0.472), rgba(38, 193, 214, 0.555));
box-shadow: 5px 5px 5px black;
color: bisque;
}
.smallHeading {
font-family: 'Kameron', serif;
}
.showScore div {
width: 30%;
height: max-content;
font-size: 1.5em;
border-radius: 20px;
background-image: linear-gradient(to top, rgba(235, 95, 95, 0.472), rgba(34, 109, 119, 0.555));
box-shadow: 5px 5px 5px black;
color: rgb(237, 206, 255);
font-family: 'Courier New', Courier, monospace;
}
.showStats div {
width: 30%;
height: 8cm;
font-size: 1.5em;
border-radius: 20px;
background-image: linear-gradient(to top, rgba(238, 121, 121, 0.472), rgba(38, 193, 214, 0.555));
box-shadow: 5px 5px 5px black;
}
@media screen and (max-width: 600px) {
.topic {
font-size: 2em;
}
.showScore div {
width: 80%;
}
.showStats div {
width: 80%;
height: max-content;
}
}
#sentenceToType {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
@media screen and (max-width: 1000px) {
.showStats div {
width: 80%;
height: max-content;
}
.showScore div {
width: 80%;
}
}