-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
122 lines (101 loc) · 2.05 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
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@700&display=swap');
html {
scroll-behavior: smooth;
background-image: linear-gradient(#F2C744, #D9415D);
background-size:cover;
background-position:center;
}
body{
user-select: none;
text-align: center;
justify-content: center;
}
#TopBar {
margin-top: -2vh;
}
#TopBar:hover {
filter: invert(1)
}
a {
color: #ffff;
text-decoration: none;
font-size: 20px;
font-family: 'Noto Sans', sans-serif;
}
#Foto {
margin-top: 17vh;
border-radius: 100%;
height: 230px;
width: 170px;
border: 8px solid #F2C744;
box-shadow: 15px 6px;
transition: 0.5s;
}
#Foto:hover {
height: 260px;
width: 200px;
}
#Nome {
color: rgb(255, 255, 255);
margin-top: 13vh;
font-size: 130px;
font-family: 'Comfortaa', cursive;
text-shadow: 6px 11px #000000
}
#Nome:hover {
color: rgb(0, 0, 0);
text-shadow: 6px 11px #ffffff
}
.Sobre {
font-family: 'Noto Sans';
font-size: 2.4vh;
margin-top: 30vh;
text-shadow: 0.5px 1px #ffffff
}
.Sobre:hover {
color: #ffffff;
text-shadow: 0.5px 1px #000000
}
#RedesSociais {
margin-top: 60vh;
display: flex;
justify-content: space-around;
}
#RedesSociais:hover {
filter: invert(1)
}
#Form {
justify-content: space-between
font-family: 'Comfortaa', cursive;
}
input {
background-color: transparent;
margin-top: 12vh;
padding: 7px;
box-sizing: border-box;
width: 150px;
border-radius: 30px;
transition: all 0.5s;
}
input:focus {
width: 300px;
}
@media screen and (max-width: 768px) {
selection, aside {
width: 100%;
padding: 0;
}
}
@media screen and (max-width: 600px) {
navi li {
float: none;
text-align: center;
width: 100%;
}
footer p {
display: none;
}
}