-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (85 loc) · 1.46 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
93
94
95
96
97
98
99
100
101
102
103
*, *:before, *:after {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
/* font-family: 'Fira Mono', monospace; */
font-family: 'Yekan', sans-serif;
font-size: 16px;
background: rgba(33, 46, 59, 1);
color: rgba(250,250,255,1);
}
pre {
text-align: center;
color: rgba(74, 147, 170, 1);
}
.content {
max-width: 500px;
margin: 20px auto;
}
.app__input, .app__end {
text-align: center;
}
.app__end {
margin-top: 40px;
}
input {
outline: none;
border: none;
margin: 0 0 20px 3px;
padding: 8px 5px 0px 0;
background: transparent;
color: rgba(250,250,255,1);
font-size: 20px;
border-bottom: 1px dotted rgba(91,114,127,1);
}
button {
background: transparent;
border: 1px dashed rgba(250,250,255,1);
outline: none;
cursor: pointer;
color: rgba(250,250,255,1);
padding: 8px 30px 9px;
font-size: 14px;
text-transform: uppercase;
font-family: 'Yekan', sans-serif;
}
.app__gen-number {
text-align: center;
}
.app__divider {
color: rgba(91,114,127,1);
margin: 20px 0;
}
.app__number {
font-size: 36px;
color: rgba(244, 89, 87, 1);
}
.app__info:before,
.app__info:after {
content: ' ';
display: table;
}
.app__info:after {
clear: both;
}
.app__info {
margin: 20px 0;
}
.app__level {
float: left;
color: rgba(244, 192, 37, 1);
}
.app__wrong {
float: right;
color: rgba(244, 89, 87, 1);
}
.app__author {
font-family: Helvetica, Arial;
position: fixed;
bottom: 20px;
right: 30px;
color: rgba(33, 150, 243, 1);
text-decoration: none;
}