-
Notifications
You must be signed in to change notification settings - Fork 0
/
fab.css
135 lines (117 loc) · 2.32 KB
/
fab.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
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
body {
background-image: url("images/bgimage_cm100.jpg");
}
h {
margin-right: 20%;
margin-left: 20%;
}
h1 {
color: black;
text-align: center;
font-family: "Times New Roman", Times, serif;
font-style: normal;
font-weight: bold;
font-variant: normal;
font-size: 4vw;
}
h2 {
color: black;
text-align: center;
font-family: "Times New Roman", Times, serif;
font-style: italic;
font-weight: normal;
font-variant: normal;
font-size: 2.5vw;
}
h3 {
color: black;
text-align: center;
font-family: "Times New Roman", Times, serif;
font-style: normal;
font-weight: bold;
font-variant: normal;
font-size: 2vw;
}
h4 {
color: black;
text-align: center;
font-family: "Times New Roman", Times, serif;
font-style: normal;
font-weight: normal;
font-variant: small-caps;
font-size: 1.7vw;
}
h5 {
color: black;
text-align: center;
font-family: "Times New Roman", Times, serif;
font-style: normal;
font-weight: bold;
font-size: 1.5vw;
}
p {
color: black;
text-align: left;
font-family: "Times New Roman", Times, serif;
font-style: normal;
font-weight: normal;
font-variant: normal;
font-size: 1.4vw;
text-indent: 5%;
margin-right: 5%;
margin-left: 5%;
}
figcaption {
color: black;
text-align: center;
font-family: "Times New Roman", Times, serif;
font-style: italic;
font-weight: normal;
font-variant: normal;
font-size: 1.25vw;
margin-right: 5%;
margin-left: 5%;
}
.card {
position: relative;
float: left;
margin-right: 10px;
margin-bottom: 10px;
border-radius: 5px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
border: 1px solid black;
box-sizing: border-box;
transition: 0.3s;
width: 24%;
}
.card p {
color: black;
text-align: center;
font-family: "Times New Roman", Times, serif;
font-style: italic;
font-weight: normal;
font-variant: normal;
font-size: 1.5vw;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.container {
padding: 2px 16px;
}
.cardrow {
margin: 50px;
}
/* For modern browsers */
.cardrow:before,
.cardrow:after {
content:"";
display:table;
}
.cardrow:after {
clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.cardrow{
zoom:1;
}