-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
128 lines (111 loc) · 2.09 KB
/
styles.css
File metadata and controls
128 lines (111 loc) · 2.09 KB
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body {
font-family: "Comic Relief", system-ui;
display: flex;
background: #fff8e8;
}
.menu-lateral {
width: 250px;
z-index: 1;
top: 0;
left: 0;
background-color: #3E78A6;
overflow-x: hidden;
transition: 0.5s;
}
.btn-fechar,
.btn-fechar i {
text-align: end;
margin: 0 !important;
display: flex;
align-items: center;
justify-content: center;
}
.menu-lateral a {
padding: 1rem;
text-decoration: none;
font-size: 15px;
color: #fff8e8;
display: block;
transition: 0.3s;
}
.menu-lateral a>i {
margin-right: 0.5rem;
}
.menu-lateral a:hover {
color: #f1f1f1;
}
main {
transition: margin-left .5s;
width: 100%;
padding: 2rem;
}
.conteudo-opt {
display: grid;
grid-template-columns: auto auto auto auto;
justify-items: center;
}
.card {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: .5rem .5rem 1rem .5rem;
border-radius: .5rem;
max-width: 190px;
width: 190px;
text-align: start;
text-decoration: none;
font-size: 14px;
margin-bottom: 2rem;
transition: all 0.25s;
}
.card:hover {
transform: scale(1.05);
box-shadow:
rgba(162, 46, 240, 0.4) 5px 5px
, rgba(149, 46, 240, 0.3) 10px 10px
, rgba(133, 46, 240, 0.2) 15px 15px;
}
.card:active {
transform: scale(0.95);
box-shadow:
rgba(0, 0, 0, 0.050) 0 0
, rgba(0, 0, 0, 0.100) 0 0
, rgba(0, 0, 0, 0.200) 0 0;
}
.card img {
width: 100%;
border-radius: .25rem;
}
.card p, small {
margin: .5rem 0;
padding: 0 .5rem;
line-height: 1.3;
}
.card small {
font-size: 11px;
}
.card-lembranca {
background: #3E78A6;
box-shadow:
rgba(240, 111, 46, 0.4) 5px 5px
, rgba(240, 124, 46, 0.3) 10px 10px
, rgba(240, 149, 46, 0.2) 15px 15px;
color: #fff8e8;
}
.card-turma {
background: #e19147;
box-shadow:
rgba(240, 188, 46, 0.4) 5px 5px
, rgba(107, 240, 46, 0.3) 10px 10px
, rgba(46, 240, 221, 0.2) 15px 15px;
color: #FFF8E8;
}
.card-turma h3 {
font-size: 1.5rem;
padding: .5rem;
}
.titulo-tela {
font-size: 2rem;
margin-bottom: 2rem;
color: #cd6300;
}