-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (101 loc) · 2.29 KB
/
Copy pathstyle.css
File metadata and controls
114 lines (101 loc) · 2.29 KB
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
@media (max-width: 960px) {
/* For a screen < 960px, this CSS will be read */
.container {
width: 700px;
}
}
@media (max-width: 720px) {
/* For a screen < 720px, this CSS will be read */
.container {
width: 500px;
}
}
@media (max-width: 540px) {
/* For a screen < 540px, this CSS will be read */
.container {
width: 300px;
}
}
h1 {
color : #575F7D;
font-size: 32px;
font-weight: 900;
}
h2 {
color: #7ECE90;
font-size: 20px;
}
.btn-blue {
background-color: #6B72E1;
color: white;
padding: 15px 20px;
border-radius: 4px;
}
img {
width: 20%;
height: 20%;
border-radius: 50%;
}
body {
background: #F7F9FC;
color: #575F7D;
font-family: 'Lora', serif;
font-size: 17px;
font-weight: lighter;
}
h1, h2, h3 {
font-family: 'Roboto', sans-serif;
}
a {
font-family: 'Roboto', sans-serif;
text-decoration: none;
color: #6B72E1;
font-weight: 600;
font-size: 16px;
}
.container {
width: 700px;
margin: 40px auto;
}
.card_white {
margin: 20px auto;
padding: 40px;
box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
border-radius: 4px;
margin: 20px 0px;
text-align: center;
}
.list-inline > li {
display: inline-block;
padding: 0px 20px;
}
/* <div class="container">
<div class="card-white" id="introduction">
<h1>Hello, I'm Boris 😎</h1>
<img src="../shared/images/profile.png" class="img-circle" width="100px" alt="Boris Paillard">
<p>
I love Github, UX/UI Design, web-development and motorbikes 🏍️. I launched Le Wagon to teach code to entrepreneurs and creative people around the world 🌍.
</p>
<a href="#" class="btn-blue">Discover Le Wagon</a>
</div>
<div class="card-white">
<h2>Follow me</h2>
<ul class="list-inline">
<li>
<a href="https://github.com/papillard" target="_blank">
<i class="fab fa-github-square"></i>
</a>
</li>
<li>
<a href="https://twitter.com/bpapillard" target="_blank">
<i class="fab fa-twitter-square"></i>
</a>
</li>
<li>
<a href="https://medium.com/@papillard" target="_blank">
<i class="fab fa-medium"></i>
</a>
</li>
</ul>
</div>
</div> */