-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyles.css
118 lines (95 loc) · 1.93 KB
/
styles.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
html {
overflow-y: auto !important;
}
body {
width: 100%;
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
overflow-x: -moz-hidden-unscrollable;
overflow-x: hidden;
overflow-x: -webkit-marquee;
min-height: 100vh;
}
.content-container {
min-height: 100vh; /* will cover the 100% of viewport */
overflow: hidden;
display: block;
position: relative;
padding-bottom: 0;
}
.darkmode-layer,
.darkmode-toggle {
z-index: 500;
}
.hidden {
display: none;
}
.margin-left {
margin-left: 20px;
}
.button-underneath {
margin-top: 10px;
}
a {
isolation: isolate;
mix-blend-mode: normal;
}
.darkmode--activated a {
mix-blend-mode: difference;
}
.gh-btn {
mix-blend-mode: normal;
}
.darkmode--activated .gh-btn {
mix-blend-mode: difference;
}
.button {
mix-blend-mode: normal;
}
.darkmode--activated .button {
mix-blend-mode: difference;
}
.darkmode--activated .fermi-dropdown {
color: #b5b5b5;
}
input[type='number']:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
0 0 8px rgba(102, 175, 233, 0.6);
background-color: #fff;
color: #363636;
}
.darkmode--activated input[type='number']:focus {
mix-blend-mode: difference;
background-color: #000;
color: #c9c9c9;
}
.darkmode--activated .has-text-success {
mix-blend-mode: difference;
}
.darkmode--activated .has-text-warning {
mix-blend-mode: difference;
}
.darkmode--activated .has-text-danger {
mix-blend-mode: difference;
}
#result {
padding-top: 5px;
}
#angle-down {
width: 1em;
height: 1em;
vertical-align: -0.125em;
fill: #485fc7;
}
.callouts.hero-body {
padding-top: 0;
}
.content-container .hero-body {
padding-bottom: 1.5rem;
}
footer.footer {
padding-bottom: 3rem;
}