-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyling.css
66 lines (56 loc) · 1.34 KB
/
styling.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
.center-picture {
display: block;
margin-left: auto;
margin-right: auto;
}
.circle {
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 100px;
}
.gradient-text {
background: -webkit-linear-gradient(transparent, black);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.semi-transparent {
background-color: rgba(255, 255, 255, 0.5);
border: transparent;
}
.transparent {
background: transparent;
border: transparent;
}
#brand,
#brand:active,
.black,
.nav.navbar-nav.navbar-right li a,
.nav.navbar-nav.navbar-right li a:active
{
color: black;
}
#brand:hover,
.nav.navbar-nav.navbar-right li a:hover {
color: white;
}
#about-me, .col-md-4 a {
color: whitesmoke;
}
#who-header {
text-align: center;
}
@font-face {
font-family: Ubuntu;
src: url(fonts/Ubuntu-Light.ttf);
}
html, body {
font-family: Ubuntu, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
height: 100%;
background-color: black;
background-image: url("images/reverse gate chinese.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: right bottom;
background-size: cover;
}