-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.css
More file actions
93 lines (80 loc) · 1.69 KB
/
Copy pathgame.css
File metadata and controls
93 lines (80 loc) · 1.69 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
:root {
position: relative;
background-color: #fffae9;
}
.logo {
position: absolute;
font-family: cursive;
font-size: 30px;
left: 10px;
top: 0;
transition: all 0.2s ease-in-out;
}
.logo:hover {
font-size: 32px;
left: 9px;
top: -1px;
}
.title {
margin-top: 80px;
margin-left: 50%;
text-align: center;
transform: translateX(-50%);
}
.password-wrapper {
max-width: 485px;
margin: 167px auto 60px;
}
.password-box {
position: relative;
}
.password-label {
font-size: 20px;
}
.password-area {
width: 100%;
padding: 15px;
border: 1px solid #9d9d9d;
border-radius: 10px;
min-height: 64px;
background-color: white;
transition: border-color .15s ease-in-out, border-radius .1s ease-in-out;
}
.password-area:focus {
border-color: black;
}
.password-length {
position: absolute;
top: 50%;
right: -50px;
transform: translate(100%, -50%);
font-size: 24px;
transition: opacity .5s ease-in-out;
margin-top: 20px;
}
.toolbar {
width: 100%;
background-color: white;
padding: 5px 15px;
border-radius: 0 0 10px 10px;
border: 1px solid black;
border-top: none;
display: inline-flex !important;
flex-wrap: wrap;
}
.toolbar * {
color: black;
background-color: white;
border: 1px solid #b3b3b3;
font-size: 20px;
padding: 5px 11px;
border-radius: 5px;
box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, .05);
transition: background-color .15s linear;
cursor: pointer;
margin: 5px;
}
.toolbar .active {
background-color: black;
color: white;
}