Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/style/pinlock/pinlock.css
blob: 307763f070a17b5dcb391b96a3bf65a744f41108 (plain)
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
#pinkeypadscreen {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  -moz-user-select: none;
  transition: transform 0.3s ease;
}

#pinkeypadscreen > #pinkeypadscreen-container {
  width: 100%;
  margin-top: 20px;
}

#pinkeypadscreen-desc {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background-color: rgba(0, 0, 0, 0.85);
  margin: 0;
  text-align: center;
  vertical-align: middle;
  border: 0px;
  font-size: 32px;
}

#pinkeypadscreen-code {
  bottom: 500px;
  height: 60px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

#pinkeypadscreen-code > span {
  -moz-box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 40px;
  text-align: center;
  border: 10px solid #888;
  box-shadow: 0 0 10px #fff inset;
}

#pinkeypadscreen-display {
  font-size: 50px;
  color: #000;
}

#pinkeypadscreen-pad {
  -moz-box-sizing: border-box;
  border: 1px solid #919191;
  bottom: 0;
  height: 350px;
  width: 100%;
  padding: 4px;
}

#pinkeypadscreen-pad > a {
  -moz-box-sizing: border-box;
  display: block;
  float: left;
  width: calc(33.333% - 8px);
  height: 60px;
  line-height: 60px;
  font-size: 48px;
  margin: 4px;
  text-align: center;
  border: 1px solid #919191;
  border-radius: 8px;
  outline: none;
  color: #919191;
  text-decoration: none;
}

#pinkeypadscreen-pad > a:active {
  background-color: rgb(0, 0, 0);
  color: #ccc;
}

#pinkeypadscreen-pad > a.pinkeypadscreen-pad-func {
  font-size: 20px;
}

#pinkeypadscreen-pad > a.pinkeypadscreen-pad-func-full {
  width: calc(100% - 8px);
  font-size: 20px;
}