app.scss
968 Bytes
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
@import 'pages/login';
@import 'pages/index';
@import 'pages/projects';
@import 'pages/users';
* {
font-family: 'Roboto', '-apple-system', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.header-style {
background-color: $yellow-orange;
color: $white;
border: none;
}
.side-menu {
min-height: 100%;
}
.menu-logo {
width: 100%;
margin-bottom: 20px;
.image-logo {
width: 60%;
margin-left: -10%;
}
}
.menu-logo-ifes {
width: 100%;
padding-top: 30px;
.image-logo {
width: 70%;
}
}
.menu-user {
.btn {
margin-left: 10px;
border-radius: 0;
}
.btn-logout {
padding: 0 30px;
border-radius: 10px;
background-color: $gunmetal;
}
}
.page {
background-color: $yellow-orange-bg;
}
.footer-style {
background-color: $yellow-orange-bg;
font-weight: 500;
height: 50px;
}
.card {
border-radius: 20px;
.card-header {
width: 100%;
text-align: center;
font-size: $font-normal;
}
}