-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
79 lines (76 loc) · 1.29 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
body{
background-image: url(teste2.png);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}
header{
background-color: white;
}
#logo{
width: 10%;
margin-left: 15%;
}
#banner{
width: 100%;
position: relative;
}
ul{
color: white;
}
nav {
position: absolute;
top: 10px;
right:20;
margin-left: 45%;
font-size: 30px; font-family: monospace;
}
nav li {
display: inline;
}
nav a{
text-decoration: none;
font-size: 100%;
}
.home{
margin-top: 10%;
text-decoration: none;
background-color: #b380cc;
color: white;
padding: 15px;
display: inline-block;
font-family: arial, sans-serif;
position: relative;
}
.home:after {
content: '';
position: absolute;
border-bottom: solid 5px white;
bottom: 0;
left: 0;
right: 100%;
transition: all 500ms;
}
.home:hover:after {
right: 0;
}
em strong {
color: #FF0000;
}
.aluno1{
border-bottom: 20px solid #c1e4ef;
display: inline-block;
text-transform: uppercase;
text-align: center;
font-size: 130%;
font-weight: bold;
color: #0f1942;
margin: 2%
}
.aluno1 img{
width: 140px!important;
height: 140px!important;
}
.nome{
background-color: #c1e4ef;
}