-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
127 lines (106 loc) · 1.94 KB
/
main.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
122
123
124
125
126
127
.page-header{
margin-top: 54px;
}
body{
padding: 0;
margin: 0;
background-color: #FFFFFF
}
.navbar {
background: #151E2A;
}
.nav-link,
.navbar-brand {
color: #FFFFFF;
cursor: pointer;
}
.nav-link {
margin-right: 1em !important;
}
.nav-link:hover {
color: #aaaaaa;
}
.navbar-collapse {
justify-content: flex-end;
}
.navbar-collapse .nav-link{ }
header{
background-image: linear-gradient(to right bottom, #0F2027, #2C5364);
background-position: centre;
background-size: cover;
position: reletive;
padding-top: 54px;
margin-top: 54px;
margin-bottom: 10px;
padding-bottom: 100vh;
}
.description{
left: 50%;
top: 45%;
transform: translate(-50%, -55%);
position: absolute;
text-align: centre;
}
.description p, h1{
position: centre;
color: #FFFFFF;
}
a.anchor {
display: block;
position: relative;
top: -56px;
visibility: hidden;
}
#projects {
padding-top: 2em;
}
.page-footer {
background-color: #222;
color: #ccc;
}
.tab-content{
margin-left: 2em;
margin-right: 2em;
padding: 2em;
border: 1px solid;
border-color: #dee2e6 #dee2e6 #dee2e6;
}
.nav.nav-tabs{
margin-left: 3em;
padding-top: 3em;
margin-right: 3em;
border-bottom: 0px;
}
.nav-tabs .nav-link{
border: 1px solid;
border-color: #dee2e6 #dee2e6 #dee2e6;
color: #dee2e6;
}
.card-title {
color: #333;
font-size: 1.3rem;
font-weight: 700;
margin-bottom: 20px;
text-transform: uppercase;
}
.card img {
-webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
margin-bottom: 16px;
}
span {
border: 1px solid #ccc;
padding: .2em;
border-radius: .2em;
display: inline-flex;
font-weight: bold;
align-items: center;
}
.footer-copyright {
color: #666;
padding: 40px 0;
}
html {
scroll-behavior: smooth;
}