-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
61 lines (52 loc) · 943 Bytes
/
index.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
* {
margin: 2px;
padding: 0;
text-align: center;
}
.container {
margin-bottom: 10px;
display: flex;
justify-content: center;
}
#sistemas {
font-weight: bold;
color: brown;
background-image: url("images/Sistemas.jpeg");
}
#ciência {
font-weight: bold;
color: gold;
background-image: url("images/ciencia.jpeg");
}
#engenharia {
font-weight: bold;
color: chocolate;
background-image: url("images/engenharia.jpg");
}
.hero-btn {
color: chocolate;
padding: 12px 34px;
font-size: 15px;
background: transparent;
position: relative;
}
.hero-btn:hover{
background: black;
transition: 1s;
}
#info2 {
display: flex;
justify-content: center;
}
#imgfinal {
background-image: url("images/reuniaobraba.jpg");
padding: 100px;
font-weight: bold;
}
#btnfinal {
padding: 10px;
}
#btnfinal:hover {
background: blue;
transition: 2s;
}