-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (81 loc) · 1.54 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
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
#topmenu {
display: flex;
background-color: #302f2f;
margin: 0;
}
#topmenu li:hover{
color: aqua;
cursor: pointer;
}
#topmenu li{
color: white;
text-decoration: none;
display: block;
padding: 15px;
}
#topmenu li:first-child {
margin-right: auto;
}
.section {
display: flex;
height: 33vh;
background-color: #22d271;
}
.centralize {
margin: auto;
text-align: center;
}
.bt {
background-color: #c64e63;
border-radius: 5px;
color: white;
padding: 11px;
border: 4px solid;
border-image: linear-gradient(135deg,#ff00009c 0%,#ff00aa93 100%) 1;
}
button:hover{
background-color: rgb(255, 0, 191);
cursor: pointer;
}
.section2 {
display: flex;
background-color: white;
}
.imagemprojeto {
width: 15vh;
height: 15vh;
padding-left: 15px;
}
.section3 {
display: flex;
background-color: #e2e3ea;
}
.section4 {
display: flex;
background-color: white;
}
footer {
background-color: black;
padding: 30px;
color: white;
text-align: center;
}
h4:hover{
color: aqua;
cursor: pointer;
}
footer > div {
display: none;
}
footer:hover > div{
display: block;
text-align: center;
color: aqua;
}