-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
171 lines (135 loc) · 3.27 KB
/
Copy pathstyles.css
File metadata and controls
171 lines (135 loc) · 3.27 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
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/* page styling */
body {
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0)), url(images/bg01.png);
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0)), url(images/bg01.png);
background-image: linear-gradient(top, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0)), url(images/bg01.png);
background-color: #f7f7f7;
background-position: top left, top left;
background-repeat: repeat-x, repeat;
-webkit-overflow-scrolling: touch;
-webkit-transform: translate3d(0, 0, 0)
}
/* navbar */
#titleLogo {
font-family: "Oleo Script";
background: #ff4486;
}
@media all and (min-width: 736px) {
#titleLogo {
font-size: 2.5rem !important;
}
}
.tile.notification.is-child.has-background-white-bis.has-maribelTiles {
padding: 4rem;
}
.has-heavy-weight {
font-weight: 800 !important;
}
@media (max-width: 768px) {
.has-tile-padding {
padding: 1.5rem !important;
}
}
@media (min-width: 768px) {
.has-tile-padding {
padding: 3.5rem !important;
}
}
.has-open-sans {
font-family: 'Open Sans', sans-serif;
}
.navSelect {
font-family: 'Open Sans', sans-serif;
font-weight: 800;
color: #696969 !important;
background-color: inherit !important;
}
a.navSelect:hover:not(.is-nav-active) {
-moz-transition: background-color .25s ease-in-out;
-webkit-transition: background-color .25s ease-in-out;
-ms-transition: background-color .25s ease-in-out;
transition: background-color .25s ease-in-out !important;
background-color: white !important;
}
.is-nav-active {
background-color: #444 !important;
color: #fff !important;
}
a#ladderdesigns {
text-decoration: underline;
}
/* intro */
/* remove inline styling for text from html and put here with good class tags */
/* input fields */
.column.has-vertically-aligned-content {
display: flex;
flex-direction: column;
justify-content: center;
}
.object {
width: 100% !important;
height: 500px !important;
color: red !important;
}
.is-blue {
background-color: #44c7ff !important;
color: white !important;
}
.inputTitle {
padding-right: 7px !important;
font-family: 'Open Sans', sans-serif;
}
.slider {
overflow-y: hidden;
max-height: 500px; /* approximate max height */
transition-property: all;
transition-duration: .5s;
transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}
html {
scroll-behavior: smooth;
-webkit-transform: translate3d(0, 0, 0)
speed: 50;
}
/* For zooming on titles and headings. */
.zoom {
transition: transform .2s !important;
/* Animation */
}
.zoom:hover {
transform: scale(1.16) !important;
/* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
.has-15px-margins {
margin: 15px;
}
.has-small-margin-left {
margin-left: 6px;
}
.has-small-margin-top {
margin-top: 2.75rem !important;
/* margin-bottom: 2rem !important; */
}
#citations {
text-decoration: none !important;
}
#worksCited {
display: none;
}
.is-pink {
color: #ff4486
}
.fadeOut {
visibility: hidden;
opacity: 0;
transition: visibility 0s 10s, opacity 0.4s linear;
}
.fadeIn {
visibility: hidden;
opacity: 0;
-webkit-transition: opacity 2s ease-in;
-moz-transition: opacity 2s ease-in;
-o-transition: opacity 2s ease-in;
-ms-transition: opacity 2s ease-in;
transition: opacity 2s ease-in;
}