Compare commits

...

6 Commits

Author SHA1 Message Date
0d4c899f2c last minute mods for bram
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-22 14:19:55 -04:00
01ce38741d fix layout on mobile
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-15 20:18:25 +05:00
9f4d8a764b add hyperlinks
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-15 20:11:52 +05:00
f9769d6cc5 make image inline on desktop
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-15 20:07:37 +05:00
13f889c5c1 add spacing on desktop
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-15 20:06:46 +05:00
cfd436cc8a add css reset
All checks were successful
continuous-integration/drone/push Build is passing
2021-10-15 19:58:23 +05:00
2 changed files with 51 additions and 7 deletions

View File

@ -4,20 +4,20 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>32m</title>
<title>32M</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/jgthms/minireset.css@master/minireset.min.css">
<link rel="stylesheet" href="fonts/fonts.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<img src="logo.svg" alt="32M">
<p>is a boutique digital rights & risks advisory firm. We provide consumer-forward legal and public policy assistance related to regulated technology competition.</p>
<p><img src="logo.svg" alt="32M"> is a boutique digital rights & risks advisory firm. We provide consumer-forward legal and public policy assistance related to regulated technology competition.</p>
<p>Our focus is on the Canadian telecommunications, media, and fintech sectors.</p>
<address>
<p>Box 563, Station P Toronto, ON M5S 2T1 Canada</p>
<ul>
<li>E: hello@Ask32M.com</li>
<li>P: +1 416 613-5056</li>
<li>T: @Ask32M</li>
<li><span>E:</span> <a href="mailto:hello@Ask32M.com">hello@Ask32M.com</a></li>
<li><span>P:</span> <a href="tel:+1 416 613-5056">+1 416 613-5056</a></li>
<!-- <li><span>T:</span> <a href="https://twitter.com/Ask32M">@Ask32M</a></li> -->
</ul>
</address>
</body>

View File

@ -5,4 +5,48 @@
body {
font-family: 'Concourse OT';
color: var(--red);
max-width: 785px;
margin: 250px;
}
p {
font-size: 36px;
margin: 1rem 0;
}
img {
display: inline;
height: 45px;
margin-right: 0.5rem;
}
address * {
font-style: normal;
font-size: 24px;
}
ul li span {
font-weight: bold;
}
a {
text-decoration: none;
color: var(--red);
}
a:hover, a:focus {
text-decoration: underline;
}
@media (max-width: 480px) {
body {
margin: 80px 50px
}
p { font-size: 24px }
img {
display: block;
margin-bottom: 1rem;
}
}