-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
105 lines (99 loc) · 1.94 KB
/
css.css
File metadata and controls
105 lines (99 loc) · 1.94 KB
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
:root {
--main-color: #d7ffda;
--card-border-radius: 10px;
}
body {
background-color: #121212;
color: var(--main-color) !important;
font-family: 'Ubuntu Mono', 'Courier New', Courier, monospace;
}
.header-image {
width: 100%;
height: 500px;
background: url('images/header-image.jpg') no-repeat left bottom;
background-size: cover;
background-color: black;
position: relative;
}
.header-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: var(--main-color);
text-align: center;
}
.header-text h1 {
font-size: 3rem;
}
.header-text p {
font-size: 1.5rem;
}
.profile-photo {
width: 100%;
border-radius: 5%;
}
.sn-list {
margin-top: 20px;
}
.sn-icon {
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.btn-outline-light {
color: var(--card-border-radius);
border-color: var(--card-border-radius);
}
.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
color: black;
background-color: var(--main-color) !important;
border-color: var(--main-color) !important;
}
.project-img-container {
align-content: center;
}
.card {
background-color: #363636;
border-radius: var(--card-border-radius);
color: var(--main-color);
}
.card-img {
width: 100%;
}
.card-title {
font-size: 2rem;
}
.card-title small {
font-size: 1rem;
}
.btn-primary {
background-color: #9dff9d;
border-color: #9dff9d;
color: black;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
background-color: #50c750 !important;
border-color: #2d6e2d !important;
color: black;
box-shadow: none;
}
.techs {
color: #afbaae;
}
a.link {
color: var(--main-color);
text-decoration: none;
border-bottom: 1px dashed var(--main-color);
}
@media screen and (max-width: 768px) {
.header-image {
height: 300px;
}
}