-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstylesheet.css
40 lines (35 loc) · 947 Bytes
/
stylesheet.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
html {
font-family: 'Rubik', sans-serif;
}
.gradient {
background: #FDBDD9; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(#EEC198, #FDBDD9); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#EEC198, #FDBDD9); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#EEC198, #FDBDD9); /* For Firefox 3.6 to 15 */
background: linear-gradient(#EEC198, #FDBDD9); /* Standard syntax */
}
img {
width: 80%;
max-width: 700px;
}
/*@media only screen
and (min-device-width: 375px)
and (max-device-width: 667px) {
img {
max-width: 70vw;
height: auto;
}
}*/
.about {
background-color: black;
color: white;
height: 0;
overflow: hidden;
position: fixed;
top: 0;
left: 0;
transition: height 0.3s ease-in-out;
}
.about.open {
height: 100%;
}