-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (104 loc) · 1.78 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
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
112
113
114
115
body {
font-family: "Arial", sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
line-height: 1.6;
color: #333;
background-color: #f4f4f4;
}
/* Header styling */
header {
background: #005a9c;
color: #ffffff;
padding: 20px 0;
text-align: center;
}
/* Main content area */
main {
padding: 20px;
}
.intro,
.test-area,
#origin-text {
margin-bottom: 20px;
padding: 20px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.intro {
font-size: large;
font-weight: 400;
}
.test-area {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.pattern {
margin-bottom: 10px;
color: #002747;
font-weight: 600;
}
#origin-text {
width: 80%;
background: #bfd9ee;
font-weight: bold;
}
.test-wrapper {
display: flex;
justify-content: center;
align-items: center;
width: 80%;
}
textarea {
width: 100%;
margin-top: 10px;
border-radius: 3px;
border: 5px solid #011235;
font-size: 1.5rem;
font-family: inherit;
color: inherit;
padding: 1.5rem 2rem;
transition: all 0.3s;
}
.meta {
display: flex;
width: 80%;
margin-top: 10px;
justify-content: space-evenly;
align-items: center;
}
#timer {
color: #002747;
background-color: #8e97cc;
padding: 8px 25px;
font-weight: bold;
font-size: large;
border-radius: 5px;
}
#reset {
background-color: #5e35ce;
color: #dedef5;
font-size: 1.25em;
padding: 10px 25px;
border: 2px solid #011235;
box-shadow: inset 10px 10px 7px rgba(0, 0, 0, 0.1);
border-radius: 5px;
outline: none;
transition: all 0.3s;
}
#reset:hover {
background-color: #dedef5;
color: #5e35ce;
box-shadow: none;
}
/* Footer styling */
footer {
text-align: center;
padding: 20px;
background: #333;
color: #ffffff;
}