-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
158 lines (125 loc) · 2.52 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
@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: #ECF4FF;
margin: 60px;
padding: 60px;
border-radius: 20px;
box-shadow: 2px 2px 4px rgba(16, 16, 16, 0.42);
color: #1C1C1C;
}
/*flexbox*/
.cabecalho{
display: flex;
justify-content:space-between; /* tem espaço entre os elementos*/
}
.perfil{
display: flex;
}
.perfil-foto{
border-radius: 400px;
max-height: 150px;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.titulos{
margin-left: 16px;
}
.titulos h1 {
font-weight: 700;
font-size: 36px;
}
.titulos h3 {
font-weight: 400;
font-size: 24px;
}
.tema {
align-self: flex-end;
font-size: 24px;
font-weight: 400;
padding: 8px 16px;
/*color: #0E1D2F;*/
background: #ECF4FF;
border-radius: 100px;
border: 2px solid #0E1D2F;
}
.projetos{
display: flex;
flex-direction: column;
align-items: center;
background: linear-gradient(230.65deg, #499CFE 27.49%, #9CC8FC 83.19%);
box-shadow: 2px 2px 4px rgba(16, 16, 16, 0.42);
border-radius: 20px;
margin-top: 32px;
padding:32px;
}
.projetos-titulo{
list-style: none;
font-weight: 700;
font-size: 32px;
}
.projetos-item{
list-style-type: none;
font-weight: 400;
font-size: 24px;
line-height: 42px;
}
.midias{
display: flex;
flex-direction: lines;
align-items: top;
justify-content: space-between;
background: linear-gradient(230.65deg, #499CFE 27.49%, #499CFE 83.19%);
box-shadow: 2px 2px 4px rgba(16, 16, 16, 0.42);
border-radius: 20px;
margin-top: 25px;
padding: 5px;
}
.redes-titulo{
list-style: none;
font-weight: 700;
font-size: 24px;
color:#F6F6F6;
text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.redes-item{
list-style-type: none;
font-weight: 400;
font-size: 16px;
line-height: 24px;
}
.redes-item a, .agradecimentos a{
text-decoration: none;
color:#F7F7F7;
text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.agradecimentos{
list-style: none;
font-weight: 700;
font-size: 24px;
}
.ag-item{
list-style-type: none;
font-weight: 400;
font-size: 16px;
line-height: 24px;
}
.dark{
background: linear-gradient(236.85deg, #375B86 27.26%, #6B87A9 96.03%);
}
.dark .container{
background: #333439;
color: #F7F7F7;
}
.dark .projetos{
color: #1C1C1C;
}
.dark .tema{
background: #1C1C1C;
color: #F6F6F6;
border: 2px solid #F7F7F7;
box-sizing: border-box;
border-radius: 100px;
}