-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
69 lines (63 loc) · 1.82 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
/* Style Settings */
@import url('https://fonts.googleapis.com/css?family=Modak&display=swap');
:root {
--bgColor: beige;
--accentColor: #F8B51E;
--font: 'Modak', cursive;
}
body{
# background-color: #ffe600;
background-color: #fff085;
# background-color: #e0900e; #Gamboge
# background-color: #f8b51e; #Crayola's Maize
# background-color: #fff9b5;
# background-color: var(--bgColor);
# background-image: url("https://images.unsplash.com/photo-1580912458557-8bae76ee5bac?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&dl=sharon-mccutcheon-KAtgNaf700g-unsplash.jpg");
# background-image: url("fundo_favomel.jpg");
# https://images.unsplash.com/photo-1580912458557-8bae76ee5bac?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&dl=sharon-mccutcheon-KAtgNaf700g-unsplash.jpg");
}
#userPhoto{
width: 96px;
height: 96px;
display: block;
margin: 35px auto 20px;
border-radius: 15px;
}
#userName{
# color: #ffe600;
color: #000000;
font-size: 2rem;
font-weight: 400;
line-height: 1.25;
display: block;
font-family: var(--font);
width: 100%;
text-align: center;
text-decoration: none;
#text-shadow: 3px 3px 0 var(--accentColor), 1px 1px 0 var(--accentColor), 2px 2px 0 var(--accentColor);
}
#links{
max-width: 675px;
width: auto;
display: block;
margin: 27px auto;
}
.link{
display: block;
background-color: var(--bgColor);
# color: var(--accentColor);
color: #000000;
font-family: var(--font);
text-align: center;
margin-bottom: 20px;
padding: 17px;
text-decoration: none;
font-size: 1.5rem;
transition: all .25s cubic-bezier(.08,.59,.29,.99);
border: solid var(----accentColor) 2px;
border-radius: 15px;
}
.link:hover{
background-color: var(--bgColor);
color: var(--accentColor);
}