-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (67 loc) · 1.35 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
body {
margin: 0px;
}
.header {
background-image: url("//armanasadian.github.io/pictures/background.jpg");
background-size: cover;
background-repeat: no-repeat;
text-align: center;
}
.header .inner {
background-color: rgb(148, 148, 148, 0.2);
padding: 30px;
color: rgb(224, 229, 237);
}
.header img {
width: 200px;
height: 200px;
border-radius: 50%;
margin-top: 40px;
border: 4px solid white;
}
h1 {
font-family: sans-serif;
}
.header p {
font-family: cursive;
font-size: 20px;
margin-bottom: 1px;
}
.header .icon {
display: flex;
align-items: center;
justify-content: center;
}
.header .icon a {
text-decoration: none;
}
svg {
fill: currentColor;
color: rgb(212, 218, 224)
}
.pics {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
padding: 30px 30px;
}
.pics img {
width: 250px;
height: 200px;
margin-bottom: 5%;
margin-right: 6%;
margin-left: 6%;
box-shadow: rgba(0, 0, 0, 0.19) 0px 20px 20px 1px, rgba(0, 0, 0, 0.23) 0px 6px 6px 1px;
border-radius: 5px;
}
.footer {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
background: linear-gradient(90deg, rgba(30,21,153,1) 32%, rgba(83,82,80,1) 72%);
}
.footer p {
font-family: fantasy;
color: rgb(255, 255, 255);
}