-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
163 lines (130 loc) · 2.27 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* GENERAL */
*{
font-family: 'Open Sans', sans-serif;
}
body{
background: #EAEAEA;
}
section{
width: 540px;
margin: 0 auto;
background: #FFFFFF;
border-radius: 5px;
box-shadow: 0px 1px 10px #CBCBCB;
}
h1{
color: #F12950;
font-weight: 700;
letter-spacing: -1px;
}
h3, p {
color: #7C7C7C;
}
/* INTRO TIM BERNERS-LEE */
#intro-tim-berners-lee{
display: grid;
grid-template-rows: 5% 110px 50% 5%;
grid-template-columns: 5% 90% 5%;
height: 400px;
margin-top: 30px;
}
.tim-berners-lee-photo{
display: grid;
grid-column: 2 / 3 ;
grid-row: 2 / 3;
}
.wiki{
display: grid;
grid-column: 2 / 3 ;
grid-row: 3 / 4;
}
.tim-berners-lee-photo img{
width: 100px;
height: 100px;
border-radius: 50%;
border: 4PX solid #CBCBCB;
margin: 0 auto;
}
.wiki h1, h3{
text-align: center;
margin-top: 5px;
margin-bottom: 5px;
}
.wiki p{
text-align: justify;
font-size: 15px;
line-height: 25px;
}
.wiki a{
text-align: center;
}
.button{
background: #F12950;
border-radius: 8px;
padding: 12px 2px;
width: 150px;
border: none;
color: #FFFFFF;
font-weight: bold;
font-size: 16px;
margin: 0 auto;
}
/* SOCIAL */
#social-network{
margin-top: 20px;
}
.social{
display: grid;
grid-template-columns: 20% 60% 20%;
margin-left: -50px;
padding: 40px;
}
ul{
grid-column: 2 / 3;
display: flex;
justify-content: space-around;
list-style: none;
}
.fa{
font-size: 25px;
display: flex;
justify-content: center;
margin-bottom: -15px;
}
a{
text-align: center;
text-decoration: none;
color: #CBCBCB;
}
/* MOVIES */
#favorite-movies{
margin-top: 20px;
padding-top: 25px;
}
.movies{
display: flex;
}
.movie-img{
height: 150px;
padding-left: 35px;
padding-right: 25px;
padding-bottom: 60px;
}
.movies h3{
text-align: center;
font-family: 'Open Sans', sans-serif;
}
.movie-sommaire h4{
font-family: 'Open Sans', sans-serif;
color: #858182;
width: 100%;
margin: 0;
text-align: center;
}
.movie-sommaire p{
font-family: 'Open Sans', sans-serif;
text-align: justify;
padding-right: 10px;
font-size: 15px;
padding-right: 30px;
}