-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
125 lines (110 loc) · 1.78 KB
/
main.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
html {
font-family: Raleway, serif;
}
h1 {
font-size: 40pt;
margin-top: 0;
}
h2 {
font-size: 30pt;
}
h3 {
font-size: 20pt;
margin-bottom: 0.5rem;
}
img#portrait {
max-height: 10cm;
}
@media print {
h1 {
font-size: 30pt;
margin-bottom: 0.25rem;
}
h2 {
font-size: 20pt;
margin: 1.0rem 0;
}
h3 {
font-size: 15pt;
margin-top: 1.0em;
}
header,
section,
footer {
page-break-inside: avoid;
}
.container {
width: 100%;
}
.container,
img {
box-shadow: none !important;
}
}
@media not print {
body {
background-image: url('images/fabric.jpg');
}
body>div.container {
padding: 2.5cm;
margin-top: 2.5cm;
margin-bottom: 2.5cm;
background-image: url('images/paper_fibers.png');
}
}
@media screen and (max-width: 600px) {
h1 {
font-size: 30pt;
}
h2 {
font-size: 20pt;
}
h3 {
font-size: 15pt;
}
body>div.container {
padding: 0.5cm;
margin-top: 0.5cm;
margin-bottom: 0.5cm;
}
}
a,
a:visited {
color: black;
}
a:hover {
color: orange;
}
#contact .row {
margin-bottom: 5px;
}
footer hr {
margin: 1.25em 0;
height: 2px;
color: transparent;
box-shadow: inset 0 0 0 2px black;
}
h2 {
display: block;
overflow: hidden;
white-space: nowrap;
}
h2>span {
position: relative;
display: inline-block;
}
h2>span:after {
content: "";
position: absolute;
top: 50%;
width: 9999px;
height: 2px;
box-shadow: inset 0 0 0 2px black;
left: 100%;
margin-left: 15px;
}
.chip {
color: black;
background-color: rgba(255, 255, 255, 0.75);
border: 1px solid;
}