-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (81 loc) · 1.32 KB
/
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
103
104
105
106
107
body { font-family: Georgia;
color: #444;
background-color:#f5f5f5;
}
h1 { font-size: 48px; text-transform: uppercase; letter-spacing: 3px; }
h2 { font-size: 152% }
h3, h4 { font-size: 122%; }
.row{
margin-top: 1px;
margin-bottom: 1px;
margin-right: 200px;
margin-left: 200px;
}
.container_main {
background-color:white;
height:100%;
width: 60vw;
}
.headshot {
width:100%;
height:auto;
}
.section_header {
font-weight: bold;
letter-spacing: 3px;
text-transform: uppercase;
}
.card-header {
font-weight: bold;
font-size:130%;
}
.card {
margin-top:5px;
}
.listbullet {
font-size:65%;
margin-top:0px;
}
li {
margin: 0px;
}
ul {
list-style: '⇒';
font-size: 200%;
}
.atom_task {
margin-top:5px;
margin-bottom:10px;
font-size:140%;
}
.skilllist {
font-size:120%;
}
@media print {
.container_main {
height:100%;
width:100vw;
}
h1 {
font-weight:bold;
font-size:120%
}
body,h2,h4,h5{
font-size:100%;
}
img {
width:300%;
height:auto;
}
.listbullet {
font-size:50%;
}
.skilllist {
font-size:60%;
}
.card {
height: 30%;
font-size:50%;
margin : 0;
}
}