-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (51 loc) · 920 Bytes
/
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
img {
width: 300px;
height: 150px;
margin: 10px;
border-radius: 45%;
transition: all 2s;
}
img:hover {
transform: scale(1.1);
}
header nav img {
width: 150px;
height: 150px;
float: left;
}
body,
html {
width: 100%;
height: 100%;
font-family: 'Montserrat', sans-serif;
background: url("background_ikherkhe.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: white;
}
.buffer {
height: 50px;
}
footer{
clear: both;
text-align: center;
color: white;
}
p:hover , footer:hover{
color: teal;
background: white;
}
.card-text {
color: teal;
}
.card-title {
color: tomato;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
position: relative;
}