-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (82 loc) · 1.4 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
body {
background-color: #EEE;
}
form {
margin: 300px auto;
position: relative;
font-family: "Roboto";
width: 475px;
height: 92px;
}
.text_container {
background-color: white;
height: 100%;
width: 100%;
border-radius: 1000px;
}
.text {
height: 100%;
width: 100%;
border-radius: inherit;
font-size: 28px;
font-weight: 600;
caret-color: #8A98A9;
opacity: 0;
padding: 0 138px 0 26px;
box-sizing: border-box;
}
.hand_container, .fail_text {
display: none;
position: absolute;
opacity: 0;
}
.hand_container {
top: 22px;
left: 28px;
}
.hand {}
.fail_text {
color: #D44;
font-family: "Roboto";
font-size: 28px;
font-weight: 600;
top: 30px;
left: 46px;
}
.submit_container {
position: absolute;
top: 0;
right: 0;
height: 100%;
/* width: script */
background-color: #D44;
border-radius: 1000px;
}
.submit {
top: 0;
right: 0;
text-align: center;
border-radius: inherit;
font-size: 28px;
font-weight: bold;
color: white;
background-color: transparent;
height: 100%;
width: 100%;
background-repeat: no-repeat;
background-size: 45px;
margin: auto;
z-index: 1000;
}
.splash {
display: none;
opacity: 0;
position: absolute;
width: 15px;
height: 15px;
background: #4D4;
top: 41px;
left: 41px;
border-radius: 100%;
z-index: 500;
}