-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (85 loc) · 1.7 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
/* color palette from https://www.color-hex.com/color-palettes */
:root {
--darkest-color: #064273;
--lightest-color: #def3f6;
--highlight-color: #ffffff;
--bright-color-1: #1da2d8;
--bright-color-2: #76b6c4;
--bright-color-3: #7fcdff;
--bright-color-4: #6093d2;
}
body {
background: var(--darkest-color);
color: var(--lightest-color);
font-family: 'Roboto', sans-serif;
}
.container {
width: 90%;
max-width: 1000px;
margin: 50px auto;
display: flex;
flex-direction: column;
text-align: center;
}
.circle-shape {
width: 140px;
height: 140px;
position: relative;
overflow: hidden;
border-radius: 50%;
border: 3px solid var(--lightest-color);
margin: 0 auto;
}
.profile-pic {
display: inline;
margin: 0 auto;
height: 100%;
width: auto;
}
a {
color: var(--lightest-color);
text-decoration: none;
}
.ig-link {
margin: 10px 0;
font-weight: bold;
}
.link-list-item {
border: 1px solid var(--lightest-color);
box-sizing: border-box;
margin: 20px auto;
color: var(--darkest-color);
padding: 15px;
text-align: center;
transition: all 0.15s;
border-radius: 2px;
}
.link-list-item-img {
width: 100%;
margin: 0;
padding: 0;
}
.highlighted,
.link-list-item:hover,
a:hover {
color: var(--highlight-color);
border-color: var(--highlight-color);
text-shadow: 0 0 2em var(--highlight-color);
}
.icon-list-img {
height: 50px;
width: 50px;
margin: 3px;
}
.dark {
background: var(--bright-color-1);
}
.medium {
background: var(--bright-color-2);
}
.light {
background: var(--bright-color-3);
}
.bright {
background: var(--bright-color-4);
}