-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (67 loc) · 1.39 KB
/
style.css
File metadata and controls
78 lines (67 loc) · 1.39 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
/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');
body {
background: url('../images/bg.jpg') ;
background-size: cover;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
}
#userPhoto {
width: 100px;
height: 100px;
display: block;
margin: 10px auto;
border-radius: 20%;
}
#userName {
color: rgb(5, 5, 5);
display: block;
width: 100%;
text-align: center;
text-decoration: none;
}
#userName h1 {
font-size: 2rem;
font-weight: 300;
letter-spacing: 0.2rem;
margin: 0 auto;
}
#userName p {
font-weight: 300;
margin-top: 5px;
text-transform: none;
}
i.fa {
margin-right: 0.3rem;
}
#links {
max-width: 500px;
width: auto;
display: block;
margin: 20px auto;
}
.link {
display: block;
background-color: rgba(66, 110, 255, 0.2);
color: #fff;
text-align: center;
margin-bottom: 20px;
padding: 17px;
text-decoration: none;
font-size: 1.2rem;
font-weight: 300;
transition: all .25s cubic-bezier(.08, .59, .29, .99);
border-radius: 10px;
}
.link:hover {
background-color: rgba(255, 255, 255, 0.3);
color: #000000;
border: none;
}
#credit {
color: rgba(255, 255, 255, 0.733);
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-weight: 600;
font-size: 0.7rem;
}