-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (92 loc) · 1.78 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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
body {
background-image: url("https://pbs.twimg.com/media/EaHcHRSVcAUxuKn.jpg:large");
font-family: "Roboto", sans-serif;
}
.container {
background: #ecf4ff;
color: #1c1c1c;
margin: 50px;
border-radius: 25px;
box-shadow: 6px 6px 6px #0e1d2f;
padding: 64px;
}
.cabecalho {
display: flex;
justify-content: space-between;
}
.perfil {
display: flex;
}
.foto-perfil {
border-radius: 460px;
max-width: 160px;
box-shadow: (0px 4px 4px rgba(0, 0, 0, 0.25));
}
.titulo {
margin-left: 19px;
}
.titulo h1 {
font-weight: 700;
font-size: 36px;
}
.titulo h3 {
font-weight: 400;
font-size: 24px;
}
.tema button {
align-self: flex-end;
background: #ecf4ff;
border: 2px solid #0e1d2f;
box-sizing: border-box;
border-radius: 100px;
font-size: 24px;
font-weight: 400;
color: #0e1d2f;
padding: 8px 16px;
}
.projetos {
display: flex;
flex-direction: column;
background: linear-gradient(230.65deg, #499cfe 27.49%, #9cc8fc 83.19%);
margin-top: 32px;
padding: 32px;
box-shadow: 2px 2px 4px rgba(16, 16, 16, 0.42);
border-radius: 20px;
}
.projetos-titulo {
list-style: none;
font-weight: bold;
font-size: 36px;
}
.txtProjetos {
list-style-type: none;
font-size: 24px;
font-weight: 400;
line-height: 48px;
}
.projetos img {
max-height: 28px;
margin-top: 10px;
padding-top: 10px;
margin-right: 10px;
}
.txtProjetos a {
color: #1c1c1c;
text-decoration: none;
}
.dark {
background: url(https://pbs.twimg.com/media/EaRQcrWUwAA_awu?format=jpg&name=large);
}
.dark .container {
background: #333439;
color: #f6f6f6;
}
.dark .projetos {
color: #1c1c1c;
}
.dark .tema button {
background: #1c1c1c;
color: #ffffff;
border-color: #f7f7f7;
}