-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcaptcha.css
More file actions
122 lines (120 loc) · 2.56 KB
/
captcha.css
File metadata and controls
122 lines (120 loc) · 2.56 KB
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
116
117
118
119
120
121
122
.waldo {
display: flex;
flex-flow: column;
width:420px;
}
.waldoheader {
background: #4a90e2;
padding: 1.6rem;
color: white;
font-weight: normal;
font-family: sans-serif;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
letter-spacing: -0.006em;
word-spacing: 0.01em;
}
.waldoheader strong {
font-size: 1.8em;
letter-spacing: 0.002em;
display: block;
margin-top: 3px;
font-weight: bolder;
line-height: 1;
}
small {
display: block;
font-weight: bold;
font-size: 0.9rem;
line-height: 1.1;
}
.waldosquare {
cursor: pointer;
background: transparent;
border: 1px solid white;
position: relative;
}
.waldosquare:hover {
transition: all 0.3s;
box-shadow: inset 1000px 1000px rgba(0, 0, 0, 0.1);
}
.waldosquare.selected {
transition: all 0.3s;
box-shadow: inset 1000px 1000px rgba(0, 0, 0, 0.2);
}
.waldosquare.selected::after {
display: flex;
justify-content: center;
align-items: center;
box-sizing: border-box;
padding-top: 4px;
content: "\2713";
position: absolute;
margin: 0.4em;
top: -12px;
left: -12px;
border-radius: 50%;
background: #4a90e2;
color: white;
height: 24px;
width: 24px;
}
.waldogrid {
display: grid;
grid-template-columns: repeat(6, 65px);
grid-template-rows: repeat(3, 65px);
background-color: tomato;
background-image: url(images/waldo.jpg);
background-position: contain;
background-size: 384px;
}
.waldoicons span {
margin-left: 0.3em;
font-size: 1em;
color: #737373;
cursor: pointer;
}
.waldoicons span:first-child {
margin-left: 0.2em;
}
.waldoicons span.material-icons {
color: #333;
font-size: 1em;
}
.waldofooter {
display: flex;
justify-content: space-between;
align-items: center;
width: 384px;
padding: 7px;
border-top: 1px solid #ccc;
}
.waldobutton {
background: #4a90e2;
outline: none;
border: none;
border-radius: 2px;
color: white;
padding: 1em 2.4em;
text-transform: uppercase;
cursor: pointer;
font-weight: normal;
font-size: 0.9em;
}
.waldobutton:hover {
box-shadow: inset 1000px 1000px rgba(0, 0, 0, 0.1);
}
.waldobutton:active {
box-shadow: inset 1000px 1000px rgba(0, 0, 0, 0.2);
}
.waldocontainer {
border: 1px solid #ccc;
margin: 10px;
box-shadow: rgba(0, 0, 0, 0.25) 1px 1px 5px;
}
.waldoheader, .waldogrid{
margin: 7px;
}
.waldoheader {
margin-bottom: 0;
}