-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (87 loc) · 1.78 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
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.container {
padding: 8px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.intro {
background-color: darkred;
text-align: center;
color: white;
margin: -8px;
padding: 16px;
}
.photo {
border-radius: 16px;
height: 300px;
width: 300px;
}
.social a {
text-decoration: none;
}
.socials img {
height: 40px;
width: 40px;
margin: auto 16px;
}
.socials a {
text-decoration: none;
}
.container > div h2 {
text-align: center;
}
.about p {
font-size: 1.5rem;
line-height: 2rem;
}
.qualifications ol {
font-size: 1.5rem;
line-height: 2rem;
}
.hobbies ul {
font-size: 1.5rem;
line-height: 2rem;
}
.tech ul {
font-size: 1.5rem;
line-height: 2rem;
}
p {
font-size: 1.5rem;
}
.dynamic-colour {
color: bisque;
}
.image-row {
display: flex;
}
.image-row img {
width: 24%;
margin: 8px;
border: 1px;
}
.description {
text-align: center;
}
h2 {
text-align: center;
}
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 20px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: red; /* Set a background color */
color: white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 15px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 18px; /* Increase font size */
}
#myBtn:hover {
background-color: #555; /* Add a dark-grey background on hover */
}