forked from artemkin/cisco-password-decoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevices.css
executable file
·157 lines (129 loc) · 2.12 KB
/
devices.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
Big screens
*/
@media screen and (min-width: 701px) {
html, body {
min-height: 700px;
}
header {
margin-top: 20px;
line-height: 100px;
font-size: 36px;
font-weight: 100;
}
footer {
bottom: 20px;
font-size: 12px;
padding: 0 200px;
& img {
margin-bottom: 20px;
width: 40px;
}
}
section {
width: 370px;
height: 370px;
margin-left: -185px;
margin-top: -185px;
& .header {
padding: 60px 80px 0 80px;
}
}
& textarea {
width: 300px;
height: 60px;
margin-top: 30px;
padding: 10px;
font-size: 12px;
&.empty {
border: 1px dashed #707070;
}
}
& .back textarea {
font-size: 18px;
padding-top: 33px;
}
& button {
width: 190px;
height: 50px;
border-radius: 25px;
font-size: 24px;
margin-top: 35px;
}
& .clear {
margin: 20px auto 0 auto;
}
}
/*
Small screens
*/
@media screen and (max-width: 700px) {
html, body {
min-height: 450px;
}
header {
margin-top: 10px;
padding: 0 50px;
font-size: 18px;
font-weight: 300;
line-height: auto;
}
footer {
width: 100%;
bottom: 10px;
font-size: 10px;
& img {
margin-bottom: 10px;
width: 20px;
}
}
section {
width: 300px;
height: 300px;
margin-left: -150px;
margin-top: -150px;
& .header {
padding: 40px 30px 10px 30px;
font-size: 16px;
}
}
.content {
width: 300px;
text-align: center;
& section {
width: 300px;
height: 300px;
position: absolute;
top: 50%;
left: 50%;
margin-left: -150px;
margin-top: -150px;
-webkit-transition: all .5s;
}
}
& textarea {
width: 220px;
height: 60px;
margin-top: 15px;
font-size: 11px;
padding: 10px;
}
& .back textarea {
font-size: 16px;
padding-top: 27px;
opacity: 1;
}
& button {
width: 140px;
height: 40px;
border-radius: 25px;
font-size: 20px;
margin-top: 25px;
}
& .clear {
margin: 10px auto 0 auto;
}
& .arrow {
margin-top: -12px;
}
}