-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
126 lines (106 loc) · 1.84 KB
/
index.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
html {
/*variáveis*/
--bg-color: #EDF2FF;
--text-color: #00082F;
--primary-color: #4264ebe7;
--primary-color-dark: #364FC7;
}
body.dark-blue {
--bg-color: #00082F;
--text-color: #FFFFFF;
}
/* pinkColor refs{
--bg-color: #FFF0F6;
--text-color: #1F000B;
--primary-color: #D6336C;
--primary-color-dark: #A61E4D;
} */
body {
/* background: var(--bg-color); */
background-image: url('./images/maratonaExplorer2.0-1920x1080.png');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
color: var(--text-color);
font-family: 'Roboto', sans-serif;
height: 100vh;
}
.container01 {
text-align: center;
width: 250px;
margin: auto;
margin-top: 40px;
}
.container02 {
margin: auto;
margin-top: 10px;
width: 250px;
text-align: center;
}
/* img {
width: 100%;
} */
img.avatar {
border-radius: 50%;
width: 100px;
height: 100px;
padding: 3.7px;
border: #4264ebe7 dotted 2px;
}
h1 {
font-size: 30px;
margin-top: 20px;
margin-bottom: 8px;
}
h3 {
font-size: 26px;
margin-top: 10px;
margin-bottom: 5px;
}
.username {
font-family: 'Roboto Mono', monospace;
font-weight: 600;
opacity: 0.8;
font-size: 18px;
}
ul {
list-style: none;
}
ul li a {
height: 53px;
display: flex;
align-items: center;
justify-content: center;
background: var(--primary-color); /* hex: 0 - F */
color: white;
/* text-transform: uppercase; */
font-size: 14px;
margin-bottom: 10px;
border-radius: 6px;
transition: background 400ms;
}
/* pseudo-class */
ul li a:hover {
background: #d6336ce7;
}
footer {
font-weight: 500;
font-size: 12px;
margin-top: 70px;
opacity: 0.6;
transition: opacity 400ms;
}
footer:hover {
opacity: 1;
}
footer a{
color: var(--text-color);
}