-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
169 lines (140 loc) · 2.62 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
body {
background: linear-gradient(236.85deg, #041832 27.26%, #3468a7 96.03%);
font-family: "Roboto", sans-serif;
}
.container {
background: #333439;
color: #f7f7f7;
margin: 60px;
border-radius: 20px;
box-shadow: 6px 6px 6px #0e1d2f;
padding: 64px;
}
.header {
display: flex;
justify-content: space-between;
}
.perfil {
display: flex;
}
.perfil-foto {
max-height: 160px;
border-radius: 460px;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.titulo {
margin-left: 16px;
}
.titulo h1 {
font-weight: 700;
font-size: 36px;
}
.titulo h3 {
font-weight: 400;
font-size: 24px;
}
.tema button {
align-self: flex-end;
font-family: Roboto;
font-style: normal;
font-weight: normal;
font-size: 24px;
line-height: 28px;
padding: 8px 16px;
background: #333439;
color: #f7f7f7;
border-radius: 100px;
border: 2px solid #f7f7f7;
box-sizing: border-box;
}
.tema button:hover {
transform: scale(1.1);
transition-duration: 0.5s;
}
.projetos {
background: linear-gradient(236.85deg, #041832 27.26%, #3468a7 96.03%);
color: #f7f7f7;
box-shadow: 2px 2px 4px rgba(16, 16, 16, 0.42);
border-radius: 20px;
margin-top: 32px;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.projetos:hover {
transform: scale(1.03);
transition-duration: 0.5s;
}
ul {
font-weight: 700;
font-size: 30px;
}
li {
list-style-type: none;
margin: 3px;
}
li a {
text-decoration: none;
color: white;
font-size: 20px;
}
li a:hover {
font-weight: bold;
color: black;
background-color: white;
padding: 4px;
border-radius: 7px;
transition-duration: 0.2s;
}
.footer {
background: #f7f7f7;
width: 50px;
height: 50px;
margin-top: 25px;
margin-left: auto;
margin-right: auto;
padding: 6px;
border-radius: 10px;
align-content: center;
box-shadow: 2px 2px 4px rgba(16, 16, 16, 0.42);
}
footer:hover {
transform: scale(1.1);
transition-duration: 0.5s;
}
.icons {
width: 50px;
height: 50px;
}
.light {
background: linear-gradient(236.85deg, #375b86 27.26%, #6b87a9 96.03%);
}
.light .container {
background: #ecf4ff;
color: #1c1c1c;
box-shadow: 6px 6px 6px #0e1d2f;
}
.light .tema button {
background: #ecf4ff;
color: #0e1d2f;
border: 2px solid #0e1d2f;
}
.light .projetos {
background: linear-gradient(230.65deg, #499cfe 27.49%, #9cc8fc 83.19%);
color: #1c1c1c;
}
.light li a {
color: black;
}
.light li a:hover {
color: white;
background-color: black;
}
.light footer {
background: #499cfe;
}
.light .icons {
filter: invert(100%)
}