-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (105 loc) · 1.76 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
html{
scroll-behavior: smooth;
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
}
h2{
font-weight: 500;
}
i{
padding: 10px;
}
p{
font-size: 20px;
}
.btn{
border-radius: 10px;
background: rgb(212,72,25);
background: linear-gradient(140deg, rgba(212,72,25,1) 16%, rgba(8,117,66,1) 88%);
}
nav{
margin-bottom: 0px;
width: 100%;
}
nav a.brand-logo{
padding-left: 15px;
letter-spacing: 2px;
}
nav li a:hover{
color:#212121;
background-color: #ffffff;
}
a.brand-logo{
font-weight: 500;
}
section.about{
min-height: 800px;
background: rgb(212,72,25);
background: linear-gradient(140deg, rgba(212,72,25,1) 16%, rgba(8,117,66,1) 88%);
}
img{
padding:5px;
background-color: #ffffff;
}
section.skills{
min-height: 1000px;
}
.progress{
height: 20px;
background-color: #ffffff;
}
.progress .determinate{
background: rgb(212,72,25);
background: linear-gradient(140deg, rgba(212,72,25,1) 16%, rgba(8,117,66,1) 88%);
}
.skills .s8{
padding-top: 15px;
}
.skills .h5{
font-weight: 500;
border: 2px white;
}
.skills .btn{
background: none;
border: 2px solid white;
}
section.projects{
min-height: 1100px;
}
.card{
border-radius: 10px;
}
.card-content{
border-radius: 10px;
}
.card-content a{
color: white;
}
.card:hover{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
footer.contact{
min-height: 500px;
}
.contact a{
color: white;
}
.fade-in{
animation: fadeIn 4s;
animation-fill-mode: forwards;
}
@keyframes fadeIn{
from {
opacity: 0;
}
to{
opacity: 1;
}
}
.modal{
height: 900px;
width: 100vw;
max-width: 700px;
padding: 20px;
}