-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
99 lines (87 loc) · 1.66 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
body {
margin: 0;
font-family: "Lucida Console", Courier, monospace !important;
font-size: large !important;
}
.page-head {
text-align: center;
height: 50px;
vertical-align: middle;
background-color: black;
color: aliceblue;
padding: 25px 0 0 0px;
}
.guide-text {
height: auto;
background-color: rgb(73, 224, 53);
color: aliceblue;
padding: 35px 0;
text-align: center;
display: table-cell;
}
.page-main {
width: 50%;
margin: 0 auto;
}
.test-area {
width: 90%;
margin: auto;
padding: 15px;
}
.h-origintext {
width: 100%;
padding: 10px;
background:rgba(128, 128, 128, 0.26);
border-radius: 5px;
text-align: center;
}
.student-place{
padding :18px 0px 0 0;
width: 100%;
}
#entered-text{
padding: 10px;
width: 100%;
border: 11px solid gray;
border-radius: 5px;
font-family: "Lucida Console", Courier, monospace;
font-size: large;
/* transition: all .7s; */
}
#origin-text{
display: none;
padding: 10px;
width: 90%;
border-radius: 5px;
font-family: "Lucida Console", Courier, monospace;
font-size: large;
/* transition: all .7s; */
}
#origin-text-label{
cursor: pointer;
}
#origin-text-label:hover{
color: brown;
}
.tester-place{
padding: 25px;
font-size: 25px;
}
#clock{
display: inline;
}
#reset-btn{
display: inline;
font-size: large;
padding: 9px 14px;
color: white;
border-radius: 5px;
background-color: rgb(48, 48, 207);
cursor: pointer;
}
#reset-btn:hover{
background-color: rgb(113, 30, 124);
}
.successed{
border-color: rgb(49, 182, 49) !important;
}