File tree 3 files changed +88
-0
lines changed
3 files changed +88
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!doctype html>
2
+ < title > IndieWeb Building Blocks for Mobile Communication CSS</ title >
3
+ < link rel ="stylesheet " href ="style.css ">
4
+
5
+ < h2 > Contact</ h2 >
6
+ < ol >
7
+ < li > < a href ="sms:user@example.com ">
8
+ < img src ="http://media.idownloadblog.com/wp-content/uploads/2013/06/Messages-icon-iOS-7.png " width ="60 " height ="60 "
9
+ alt =""/>
10
+ txt message
11
+ </ a > </ li >
12
+ < li > < a href ="fb-messenger://user-thread/4 ">
13
+ < img src ="http://a1.mzstatic.com/us/r30/Purple/v4/f1/78/4d/f1784dfc-4fde-c050-fb09-e7ca857fcc08/mzl.kboatkno.350x350-75.jpg " width ="60 " height ="60 "
14
+ alt =""/>
15
+ < abbr title ="Facebook "> FB</ abbr > message
16
+ </ a > </ li >
17
+ < li > < a href ="aim:goim?screenname=tantekc&message=hi ">
18
+ < img src ="http://a4.mzstatic.com/us/r30/Purple6/v4/f4/5f/67/f45f676c-cc79-1eba-c910-7bfead9e92ea/mzl.agcbnvdg.350x350-75.jpg " width ="60 " height ="60 "
19
+ alt =""/>
20
+ AIM chat
21
+ </ a > </ li >
22
+ < li > < a href ="facetime:user@example.com ">
23
+ < img src ="http://www.downloadios7.org/wp-content/uploads/apple_facetime_ios_7_logo.png " width ="60 " height ="60 "
24
+ alt =""/>
25
+ FaceTime call
26
+ </ a > </ li >
27
+ < li > < a href ="skype:echo123?call ">
28
+ < img src ="http://a4.mzstatic.com/us/r30/Purple/v4/f7/64/47/f76447e6-460c-5a25-3030-eec67e9dd775/mzl.atbvkciq.350x350-75.jpg " width ="60 " height ="60 "
29
+ alt =""/>
30
+ Skype call
31
+ </ a > </ li >
32
+ < li > < a href ="https://mobile.twitter.com/t/messages ">
33
+ < img src ="http://a2.mzstatic.com/us/r30/Purple4/v4/45/2a/6c/452a6ce3-8514-d1fc-8beb-53d9b1c4cfee/mzl.xpibyegh.350x350-75.jpg " width ="60 " height ="60 "
34
+ alt =""/>
35
+ Twitter DM
36
+ </ a > </ li >
37
+ </ ol >
Original file line number Diff line number Diff line change
1
+ body {
2
+ margin : 0 ;
3
+ background : black;
4
+ display : flex;
5
+ align-items : center;
6
+ flex-direction : column;
7
+ font-family : "Helvetica Neue" , Helvetica, Arial, sans-serif;
8
+ }
9
+
10
+ h2 {
11
+ color : white;
12
+ font-weight : 100 ;
13
+ font-size : 30px ;
14
+ margin : 40px 0 ;
15
+ letter-spacing : 2px ;
16
+ }
17
+
18
+ ol {
19
+ padding : 22px 10px 18px ;
20
+ margin : 0 ;
21
+ width : 100% ;
22
+ max-width : 320px ;
23
+ display : flex;
24
+ flex-wrap : wrap;
25
+ background : # 4e4e50 ;
26
+ list-style : none;
27
+ border-radius : 32px ;
28
+ box-sizing : border-box;
29
+ }
30
+
31
+ li {
32
+ width : 33% ;
33
+ text-align : center;
34
+ }
35
+
36
+ a {
37
+ font-size : 11px ;
38
+ font-weight : 100 ;
39
+ letter-spacing : 0.08em ;
40
+ padding : 7px 0 ;
41
+ display : block;
42
+ color : white;
43
+ text-decoration : none;
44
+ }
45
+
46
+ a img {
47
+ border-radius : 13px ;
48
+ overflow : hidden;
49
+ display : block;
50
+ margin : 0 auto 5px ;
51
+ }
You can’t perform that action at this time.
0 commit comments