-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcssfileishere.css
114 lines (94 loc) · 1.95 KB
/
cssfileishere.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
@font-face {
font-family: "sfreg";
src: url(font\SFPro-Regular.ttf) format("truetype"), local("SF Pro Display Regular");
}
@font-face {
font-family: "sfsemibold";
src: url(font\SF-Semibold.otf) format("opentype"), local("SF Pro Display Semibold");
}
@font-face {
font-family: "sfbold";
src: url(font\SF-Bold.otf) format("opentype"), local("SF Pro Display Bold");
}
body {
background-color: rgb(255, 255, 255);
font-family: "sfreg", sans-serif;
}
.container {
max-width: 700px;
margin: auto;
margin-top: 50px;
padding: 20px;
}
marquee{
margin: 0;
font-family: "sfreg";
font-size: 14px;
color: #000000;
background-color: rgb(238, 238, 238);
padding: 4px;
}
h1.header{
font-family: "sfsemibold", sans-serif;
padding-top: 12px;
font-size:36px;
}
p.sub {
padding-top: 12px;
font-size:19px;
}
.semi {
font-family: "sfsemibold", sans-serif;
color: rgb(102, 102, 102);
text-decoration: none;
border-bottom: 2px solid transparent;
padding-bottom: 8px;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
}
a.semi:hover {
padding-bottom: 1px;
border-style: none none solid;
border-width: 2px;
border-color: #000;
color: black;
}
.subemail {
padding-top: 12px;
font-size:19px;
}
a.email {
font-family: "sfsemibold", sans-serif;
color: black;
text-decoration: none;
border-bottom: 2px solid black;
-webkit-transition: all 200ms ease;
transition: all 200ms ease;
}
a:hover {
padding-bottom: 5px;
border-bottom-color: transparent;
}
img.pp{
border-radius: 50%;
width: 70px;
}
p.footer {
padding-top: 15px;
padding-bottom: 8px;
font-size:19px;
}
@media only screen and (min-width: 768px) {
h1.header{
font-size:49px;
}
p.sub {
font-size:19px;
}
.subemail {
font-size:19px;
}
p.footer {
font-size:19px;
}
}