-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
147 lines (125 loc) · 2.23 KB
/
style.css
File metadata and controls
147 lines (125 loc) · 2.23 KB
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
* {
margin: 0;
padding: 0;
}
img {
display: block;
max-width: 100%;
}
li {
list-style: none;
}
body {
font-family: 'Source Code Pro', monospace;
background: url("../Img/904746.jpg") no-repeat top center;
background-attachment: fixed;
background-size: cover;
display: grid;
align-items: center;
justify-items: center;
height: 100vh;
color: #aeaeae;
}
.container {
padding: 0 16px;
}
.title {
font-size: 36px;
font-weight: normal;
}
.profile {
max-width: 452px;
box-sizing: border-box;
margin: 0 auto;
}
.box {
background: #eee;
padding: 4rem;
box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.16);
border-radius: 50px;
text-align: center;
margin-top: 8rem;
}
.profile-pic {
border-radius: 50%;
margin: 0 auto 2rem auto;
}
.profile span {
font-size: 24px;
}
.profile p {
font-size: 18px;
margin-top: 2rem;
margin-bottom: 4rem;
}
.redes-sociais {
display: flex;
justify-content: center;
}
.redes-sociais li {
margin-right: 1rem;
}
.portfolio {
max-width: 886px;
box-sizing: border-box;
}
.portfolio ul {
margin-top: 3rem;
}
.portfolio li {
display: grid;
grid-template-columns: 1fr 1fr;
text-align: left;
gap: 1rem;
color: #606060;
}
.portfolio li + li {
margin-top: 2rem;
}
.portfolio img {
border-radius: 10px;
}
.portfolio h2 {
font-weight: normal;
margin-bottom: 1rem;
}
.copyright {
font-size: 24px;
color: white;
text-shadow: 2px 2px 16px black;
margin-top: 50vh;
padding-bottom: 50vh;
text-align: center;
}
@media (max-width: 600px) {
body {
background-attachment: initial;
background-size: contain;
background-color: #f0e6da;
}
.box {
padding: 2rem;
margin-top: 4rem;
border-radius: 30px;
}
.box:first-child {
padding: 3rem;
}
.portfolio ul {
margin-top: 1rem;
}
.portfolio li {
grid-template-columns: 1fr;
justify-items: center;
}
.portfolio li div {
max-width: 448px;
}
.copyright {
font-size: 18px;
color: #606060;
text-shadow: none;
margin: 0;
padding: 4rem 0;
}
}