-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindividual-style.css
102 lines (74 loc) · 1.58 KB
/
individual-style.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
/* default font size for safari is 18px, so for em *18 for px */
body {
max-width:40em;
text-size-adjust: 100%;
height: 100%;
margin-top: 0px;
background-color: #FFFFEF;
margin: 0 auto;
line-height:1.6;
color:#444;
font-family: avenir;
font-weight: normal;
}
.break1 { display: none; }
/************************ landing section ************************/
h1 {
font-size: 2.2em;
}
#pdf {
height: 100vh;
}
h1:hover {
opacity: .5;
}
a {
color: #B84B26;
font-weight: bold;
text-decoration: none;
}
iframe {
display: block;
margin: 0 auto;
}
.align-center {
margin: 0 auto;
}
figure.thumbnail {
margin: 0 auto;
margin-bottom: 75px;
width: 200px;
height: 200px;
}
#detail h3 { /* heading for sections of design brief */
font-size: 1em;
}
figure.thumbnail figcaption {
text-align: center;
text-decoration: none;
font-family: helvetica;
font-weight: medium;
font-size: .6em;
}
img {
max-width: 100%;
max-height: 100%;
}
figure.thumbnail figcaption p {
margin:0;
margin-top: -.5em;
}
div#detail {
width: 60vw;
height: auto;
display: flex;
margin: 0 auto;
flex-wrap: wrap;
flex-direction: row;
align-content: center;
}
@media (min-width: 320px) and (max-device-width : 667px){
body {
width: 90vw;
}
}