-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (79 loc) · 1.79 KB
/
style.css
File metadata and controls
79 lines (79 loc) · 1.79 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
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 400;
font-stretch: normal;
src: url(https://fonts.gstatic.com/s/inconsolata/v21/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WR32kg.ttf) format('truetype');
}
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 700;
font-stretch: normal;
src: url(https://fonts.gstatic.com/s/inconsolata/v21/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7WR32kg.ttf) format('truetype');
}
body {
font-family: 'Inconsolata', sans-serif;
color: rgb(255, 255, 255);
background: #365896;
}
body .container {
text-align: center;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
padding-top: 45px;
padding-bottom: 20px;
}
body .container .info {
margin: 0 auto;
max-width: 500px;
}
body .container h1 {
text-align: center;
color: rgba(255, 255, 255, 0.8);
}
body .container .credit {
text-align: center;
color: rgba(255, 255, 255, 0.4);
line-height: 2em;
}
body .container .credit a {
color: rgba(255, 255, 255, 0.8);
}
body .container .row {
padding-top: 5px;
}
body .container .row .inactive {
pointer-events: none;
}
body .container .row .inactive .circle {
border-color: rgba(255, 255, 255, 0.2);
background-color: rgba(255, 255, 255, 0.2);
cursor: default;
}
body .container .row .operations .operation {
cursor: pointer;
}
body .container .row .operations .selected {
text-decoration: underline;
}
body .container .row .result .circle {
cursor: default;
}
body .container .row .label {
display: inline-block;
}
body .container .row .circle {
display: inline-block;
width: 20px;
height: 20px;
border-radius: 100px;
border: 1px solid rgb(255, 255, 255);
cursor: pointer;
}
body .container .row .active {
background: rgb(255, 255, 255);
}