-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (94 loc) · 2.03 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
106
107
108
109
/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
:root {
--bgColor: #eeeeee;
--accentColor: #1F1BB8;
--font: 'Roboto', sans-serif;
--hoverColor: #1F1B90
}
body{
background-color: var(--bgColor);
}
div.top{
background-color: #204051;
margin: 0;
}
#userPhoto{
width: 96px;
height: 96px;
display: block;
margin: 35px auto;
border-radius: 25%;
border-style: solid;
}
#userName{
color: #bbb;
font-size: 1rem;
font-weight: 600;
line-height: 1.25;
display: block;
font-family: var(--font);
width: 100%;
text-align: center;
text-decoration: none;
}
#links{
max-width: 675px;
width: 100%;
display: block;
margin: 27px auto;
}
h1{
text-align: center;
font-family: var(--font);
color: var(--accentColor);
}
#description{
text-align: center;
font-family: var(--font)
}
#social-media{
margin: auto;
}
.link{
display: block;
background-color: var(--accentColor);
color: var(--bgColor);
font-family: var(--font);
text-align: center;
margin-bottom: 20px;
padding: 17px;
text-decoration: none;
font-size: 1rem;
transition: all .25s cubic-bezier(.08,.59,.29,.99);
border-radius: 25px;
}
.link:hover{
background-color: var(--hoverColor);
color: #ffffff;
}
details summary {
cursor: pointer;
}
/* details {
background: lightgreen;
}
details[open] summary {
background: var(--bgColor);
} */
.link1 {
display: block;
background-color: var(--internal-link);
color: var(--bgColor);
font-family: var(--font);
text-align: center;
margin-top: 20px;
padding: 17px;
text-decoration: none;
font-size: 1rem;
transition: all .25s cubic-bezier(.08,.59,.29,.99);
border-radius: 25px;
}
.link1:hover{
background-color: var(--internal-hover);
}