-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathestilos.css
106 lines (89 loc) · 1.47 KB
/
estilos.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
body {
margin : 0;
font-family: 'Roboto', sans-serif;
}
header{
background: #1985A1;
/*background: #1985A1;*/
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 10px;
height: 50px;
}
.header-right{
height: inherit;
display: flex;
align-items: center;
}
.header-right.button{
margin-left: 5px;
}
header h1{
color: white;
}
.button{
background: gray;
/*border-bottom: 5px solid black;*/
box-shadow: inset 0 -5px 0 rgba(0, 0, 0, .3);
font-size: 14px;
border-radius:5px;
padding: 10px 10px;
text-decoration: none;
color: white;
/*transition: .2s;*/
}
/*.button:active{
transform: scale(.9);
}*/
.button.red{
background: #DCDCDD;
/*border-color: yellow;*/
}
nav{
height: inherit;
/*border: 1px solid blue;*/
}
nav ul{
margin: 0;
display: flex;
height: inherit;
}
nav li{
list-style: none;
/*margin: 0 10px;*/
color: white;
height: inherit;
display: flex;
align-items: center;
}
nav li:after{
content: "|";
display: inline-block;
/*margin: 0 10px;*/
}
nav li:last-child:after{
display: none;
}
nav a {
color: black;
text-decoration: none;
/*border-top: 5px solid transparent;*/
height: inherit;
display: flex;
align-items: center;
padding: 0 10px;
}
nav a.is-active{
box-shadow: inset 0 5px 0 #2CA58D;
}
nav a:hover{
/*border-top: 5px solid red;*/
box-shadow: inset 0 5px 0 #0A2342 !important;
}
h1{
margin: 0;
font-weight: 500;
color: white;
}