-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (85 loc) · 1.58 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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
.body{
background: linear-gradient(blue to blueviolet);
font-family: 'Roboto', sans-serif;
}
.container {
background: #40FF00;
color: #B43104;
margin: 14px;
border-radius: 20px;
box-shadow: 6px 6px 6px #0E1D2F;
padding: 64px;
}
.cabecalho {
display: flex;
justify-content: space-between;
}
.perfil{
display: flex;
align-items: left;
}
.perfil-foto{
border-radius: 160px;
max-height: 170px;
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.titulo {
margin-left: 50px;
}
.titulo h1 {
font weight: 700;
font-size : 36px;
}
.titulo h3 {
font weight : 700;
font-size : 36px;
}
.tema button {
align-self: flex-end;
font-size: 24px;
font-weight:400;
padding: 8px 16px;
background:#ecf4ff;
border-radius:100px;
}
.projetos {
display: flex;
flex-direction: column;
align-items: center;
background: linear-gradient(230.65deg, #499CFE 27.49%, #9CCBFC 83.19%);
margin-top: 32px;
padding: 32px;
box-shadow: 2px 2px 4px rgba(16,16 0.42);
border-radius: 20px;
}
.projetos-titulo {
list-style: none;
font-weight:700;
font-size: 36px;
}
.projetos-item {
list-style-type: none;
font-size: 24px;
font-weight: 400px;
line-height: 60px;
}
.projetos-item a {
color: #1C1C1C;
text-decoration: none;
}
.dark {
background:linear-gradient(236.85deg, #375886 27.26%, #6b87a9 96.03%);
}
.dark.container{
background:#333439;
color:#F6F6F6;
}
.dark.projetos {
background:#1C1C1C;
}
.dark.tema button{
background:#1C1C1C;
color:#FFFFFF;
border: 2px solid #f7f7f7;
}