This repository has been archived by the owner on Jan 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
130 lines (107 loc) · 1.89 KB
/
style.scss
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
@mixin breakpoint($point) {
@if $point == fixthewidth {
@media (min-width: 1545px) {@content;}
}
@if $point == textonbottom {
@media only screen and (max-width : 780px), only screen and (max-device-width : 1024px) {@content;}
}
@if $point == shiftmeleft {
@media only screen and (min-width : 781px) and (max-width : 1024px) and (min-device-width: 1024px) {@content;}
}
}
body, html {
height:100%;
}
body {
font-family: "Crimson Text", Verdana, sans-serif;
background-color: gray;
background-color:black;
margin:0;
}
h1 {
font-size: 4em;
margin: 0px;
text-align: center;
font-weight: normal;
@include breakpoint(textonbottom) {
font-size:3em;
}
}
h2 {
font-size: 1.5em;
margin: 0px;
text-align: center;
font-weight: normal;
@include breakpoint(textonbottom) {
font-size:2em;
}
}
a, a:visited {
color:#00cccc;
}
#detailColumn {
width:400px;
background-color: #ddd;
background-color:rgba(221,221,221,0.7);
background-color:rgba(60,60,60,0.7);
color:#eee;
margin: 20px;
border-radius:15px;
float: right;
position:absolute;
top:20px;
right:20px;
padding:20px;
@include breakpoint(fixthewidth) {
position:absolute;
left:1050px;
}
@include breakpoint(textonbottom) {
width:auto;
margin: 10px;
float: none;
position:relative;
top:auto;
right:auto;
left:auto;
font-size:2em;
}
}
.links {
}
.social {
margin:5px;
vertical-align:middle;
}
#myLinks {
list-style-type:none;
padding-left:0;
}
#myLinks li {
display:inline;
}
.md_image {
margin:30px;
@include breakpoint(textonbottom) {
width:100%;
margin:0px;
}
@include breakpoint(shiftmeleft) {
position:absolute;
left:-300px;
}
}
.img_wrapper {
@include breakpoint(textonbottom) {
border: 10px solid black;
border-radius:25px;
overflow:none;
}
@include breakpoint(shiftmeleft) {
position:relative;
margin-left:30px;
overflow:hidden;
width:1000px;
height:1000px;
}
}