-
-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathstylesheet.css
More file actions
99 lines (78 loc) · 1.51 KB
/
Copy pathstylesheet.css
File metadata and controls
99 lines (78 loc) · 1.51 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* Layout */
html {
overflow: auto;
}
body {
display: flex;
min-height: 100vh;
flex-direction: column;
}
#wrapper {
flex: 1;
}
/* Nav */
.hero-head .navbar-item.title {
color: #363636;
margin-bottom: 0;
}
.hero-head .navbar-burger {
height: initial;
align-items: stretch;
}
/* Index */
.index .hero {
background-image: url("https://user-images.githubusercontent.com/18099289/38436955-58d160b2-39d6-11e8-9086-c5a9f5eb416a.png");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.index .hero-head .navbar-item.title {
opacity: 0;
}
.index .hero.is-light .hero-body a:not(.button):not(.dropdown-item):not(.tag) {
color: #3273dc;
}
.index .hero.is-light .hero-body a:not(.button):not(.dropdown-item):not(.tag):hover {
color: inherit;
}
.index .hero-foot img {
display: block;
margin: 0 auto;
}
#genform .field {
margin-bottom: 20px;
}
#genform fieldset.box {
border: 0;
padding-top: 0;
padding-bottom: 0;
}
#genform fieldset.box > legend {
background-color: white;
padding: 0 7px;
}
#text-to-copy {
height: 220px;
margin-top: 1em;
}
/* Extra CSS for Notifications */
#txt-notification h1 {
font-size: 25px;
}
#txt-notification {
position: fixed;
display: none;
opacity: 0;
transition: opacity 1s;
text-align: center;
top: 5px;
right: 5px;
width: 300px;
z-index: 3;
}
#txt-notification.visible {
display: block;
}
#txt-notification.opaque {
opacity: 1;
}