-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (109 loc) · 1.93 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
@keyframes backgroundColorPalette
{
0%
{ background: #3a428c; } 25%
{ background: #3a868c; } 50%
{ background: ##3a648c; } 75%
{ background: #3e238c; } 100%
{ background: #0c7b8c; }
}
body {
font-family: Arial, sans-serif;
font-size: 20px;
background-color: #1b3752;
color: white;
padding: 10px;
}
#profile-pic {
width: 100px;
height: 100px;
border-radius: 50%;
float: left;
margin-right: 15px;
box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
}
header {
animation-name: backgroundColorPalette;
animation-duration: 20s;
animation-iteration-count: infinite;
animation-direction: alternate;
color: #fff;
padding: 20px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
main{
color: #fff;
padding: 20px;
background-color: #bfd5ff53;
}
footer{
animation-name: backgroundColorPalette;
animation-duration: 20s;
animation-iteration-count: infinite;
animation-direction: alternate;
color: #fff;
padding: 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
h1, h2 {
margin: 0;
}
h1 {
font-size: 36px;
}
h2 {
font-size: 24px;
}
section {
margin-top: 20px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
margin-bottom: 10px;
}
#education li:before {
content: "-";
margin-right: 10px;
}
#work-experience li:before {
content: "-";
margin-right: 10px;
}
#trainings li:before {
content: "-";
margin-right: 10px;
}
#orgs li:before {
content: "-";
margin-right: 10px;
}
#skills li:before {
content: "-";
margin-right: 10px;
}
#achievements li:before {
content: "-";
margin-right: 10px;
}
@media only screen and (max-width: 600px) {
header {
text-align: center;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 18px;
}
section {
margin-top: 10px;
}
li {
margin-bottom: 5px;
}