-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
109 lines (86 loc) · 1.41 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
html, body {
width: 100%;
height: 100%;
margin: 0px;
}
canvas {
position: fixed;
width: 100%;
height: 100%;
z-index: -1;
}
#container {
color: #CCC;
margin: 0 10%;
position: absolute;
}
#container > .row {
margin-bottom: 8em;
}
#container > .row h2 {
margin-bottom: 2em;
}
h1, h2, h3 {
font-weight: 100;
font-family: 'Merriweather', serif;
}
* {
font-family: 'Merriweather', serif;
color: #FFF;
}
img {
max-width: 100%;
max-height: 100%;
}
ul {
padding: 0px;
}
#about, #past_work, #art, #social {
text-align: center;
}
.about {
text-align: justify;
}
#about, #past_work {
margin: 700px auto 2em auto;
}
.project .content {
margin: 3em 0;
text-align: center;
}
.art, .social {
text-align: center;
}
.social .ui.image.black.label {
margin: 1em;
}
.project, .about, .past_work, .art, .social {
background: rgba(0,0,0,0.35);
display: block;
padding: 2em;
}
.past_work {
overflow: auto;
}
.past_work .ui.right.floated.bulleted.inverted.list {
margin-top: 0px;
}
@media only screen and (max-width: 1000px) {
#about {
margin: 1000px auto 2em auto !important;
}
#past_work {
margin: 0 auto 2em auto !important;
}
.header, .header * {
text-align: center;
margin-left: auto;
margin-right: auto;
}
.header .right.menu {
margin-top: 5em;
}
.past_work .ui.right.floated.bulleted.inverted.list {
float: left !important;
}
}