-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (85 loc) · 1.92 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
/* Prebuilt Tools And Imports */
@import url('https://fonts.cdnfonts.com/css/laguna');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
.gradient-background {
background: linear-gradient(300deg, #f4e1be, #856f5b, #6a5441);
background-size: 180% 180%;
animation: gradient-animation 10s ease infinite;
}
@keyframes gradient-animation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
/* Main Style */
*{
font-family: 'Laguna', sans-serif;
}
.logo-img{
margin-left: 20px;
}
.nav-item > .nav-link{
margin-right: 40px;
font-family: 'Laguna', sans-serif !important;
color: black;
}
.nav :hover{
color:rgb(91, 79, 58) !important;
}
.heading{
font-family: 'DM Serif Display', serif;
}
.text-body-emphasis{
font-family: 'DM Serif Display', 'serif';
color: #fd7600;
}
.lead{
font-family: 'Laguna', sans-serif;
}
#skills{
font-family: 'DM Serif Display', 'serif';
color: black !important;
}
.icon-div{
background-color: #9e8a79;
border-radius: 4px;
padding: 5px;
}
#skills{
margin-top: 50px;
}
#skills-container{
margin-bottom: 50px;
}
.get-in-touch{
color: #2a2119 !important;
font-family: 'DM Serif Display', 'serif';
}
.git-desc{
color: black;
padding-top: 30px;
}
.btn{
border: 2px solid #4e3d2f !important;
font-weight: 600 !important;
color: #4e3d2f !important;
font-family: 'DM Serif Display', 'serif' !important;
letter-spacing: 1px;
}
.btn:hover{
background-color: #4e3d2f !important;
color: #a28c7a !important;
}
.button-link:hover{
color: #a28c7a !important;
}
.footer-bg{
background-color: #63503f;
}