-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
96 lines (86 loc) · 1.68 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
body{
background-color: black;
color: rgb(205, 224, 241);
font-size: 2em;
height: 300vh;
}
header{
background-color: rgb(125, 131, 129);
}
span{
font-weight: 400;
text-shadow: 2px 2px 2px rgb(235, 65, 167);
}
nav li {
font-size: 14px;
margin-left: 130px;
color: palevioletred;
text-decoration: none;
display: inline;
text-transform: uppercase;
}
nav a {
color: palevioletred;
text-decoration: none;
text-shadow: 2px 2px 2px black;
}
nav a:hover {
text-decoration: underline;
}
.envelope{
border: 2px solid rgb(235, 65, 167);
border-radius: 30px;
display: flex;
align-items: center;
flex-direction: column;
}
.imagem__teste{
width: 200px;
height: 200px;
margin: 5px;
}
.container__static{
display: flex;
align-items: center;
flex-direction: column;
}
.container__absolute{
display: flex;
align-items: center;
flex-direction: column;
border: 2px solid rgb(235, 65, 167);
border-radius: 30px;
position: absolute;
top : 40vw;
left:40vw;
}
.container__relative{
display: flex;
align-items: center;
flex-direction: column;
border: 2px solid rgb(235, 65, 167);
border-radius: 30px;
position: relative;
top : 0vw;
left:0vw;
}
.container__fixed{
display: flex;
align-items: center;
flex-direction: column;
border: 2px solid rgb(235, 65, 167);
border-radius: 30px;
position: fixed;
top : 20vw;
right: 20vw;
}
.container__sticky{
display: flex;
align-items: center;
flex-direction: column;
border: 2px solid rgb(235, 65, 167);
border-radius: 30px;
position: sticky;
top : 20vw;
left: 20vw;
}