-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
79 lines (71 loc) · 1.31 KB
/
index.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
body {
font-family: "Open Sans", sans-serif;
background: rgb(2, 0, 36);
background: linear-gradient(
90deg,
rgba(2, 0, 36, 1) 0%,
rgba(11, 26, 57, 1) 35%,
rgba(70, 8, 95, 1) 100%
);
color: whitesmoke;
}
header {
font-family: "Roboto";
background: rgb(2, 0, 36);
background: linear-gradient(
90deg,
rgba(2, 0, 36, 1) 0%,
rgba(11, 26, 57, 1) 35%,
rgba(70, 8, 95, 1) 100%
);
color: whitesmoke;
}
h1 {
display: inline-flex;
}
div ul {
list-style-type: none;
display: inline-flex;
margin-inline: 2rem;
justify-content: space-between;
text-decoration: none;
color: whitesmoke;
padding: 20px;
}
a[target="_blank"] {
text-decoration: none;
color: whitesmoke;
padding: 20px;
}
a {
text-decoration: none;
color: whitesmoke;
padding: 20px;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo-container {
display: flex;
gap: 1rem;
align-items: center;
}
.passport {
height: 40px;
width: 40px;
border-radius: 100%;
}
.Photo {
height: 400px;
width: 100%;
}
h2 {
background: linear-gradient(to bottom, #000000 0%, #ffffff 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
p {
font-size: 1.5 rem;
}