1
+ #app {
2
+ height : 100vh ;
3
+
4
+ main {
5
+ @include flex (row , flex-start , start );
6
+ width : 100vw ;
7
+ height : 100vh ;
8
+ min-height : calc (100vh - 80px );
9
+ border-bottom : 1px solid #0000008f ;
10
+ background-color : $primary-color-dark ;
11
+ position : relative ;
12
+
13
+ .content {
14
+ @include flex (column , flex-start , start );
15
+ width : calc (100% - 300px );
16
+ height : 100% ;
17
+
18
+ @include m-screen (1200px ) {
19
+ width : 100% ;
20
+ }
21
+
22
+ .search {
23
+ @include flex (row , center , start );
24
+ height : 50px ;
25
+ width : 62% ;
26
+ padding : 20px 30px 20px 80px ;
27
+
28
+ .box {
29
+ @include flex (row , cen, start );
30
+ height : 50px ;
31
+ border-radius : 25px ;
32
+ width : calc (100% - 40px );
33
+ background-color : $secondary-color-dark ;
34
+
35
+ input {
36
+ color : $font-color-dark-2 ;
37
+ width : 94% ;
38
+ height : 100% ;
39
+ padding-inline : 15px ;
40
+ outline : none ;
41
+ background : transparent ;
42
+ border : none ;
43
+ font-size : medium
44
+ }
45
+
46
+ button {
47
+ @include flex-center ;
48
+ height : 100% ;
49
+ background-color : transparent ;
50
+ border : none ;
51
+
52
+ img {
53
+ height : 55% ;
54
+ object-fit : cover ;
55
+ opacity : 0.8 ;
56
+ filter : invert (100% )
57
+ }
58
+ }
59
+ }
60
+ }
61
+
62
+ >.box {
63
+ @include flex (column , flex-start , start );
64
+ padding : 50px 0px 0px 100px ;
65
+ width : 70% ;
66
+ height : 100% ;
67
+
68
+ @include m-screen (1400px ) {
69
+ @include flex (column , center , center );
70
+ padding : 50px 0px 0px 0px ;
71
+ width : 100% ;
72
+ }
73
+
74
+ .resultado {
75
+ @include flex (column , flex-end , start );
76
+ color : $secondary-color-orange ;
77
+ margin-right : 10px ;
78
+ margin-bottom : 10px ;
79
+ height : 100% ;
80
+ font-size : small ;
81
+ font-weight : 200 ;
82
+ @include font-inter (600 );
83
+ }
84
+
85
+
86
+ .user {
87
+ @include flex (column , flex-start , start );
88
+ width : 80% ;
89
+ height : 90px ;
90
+ margin-bottom : 10px ;
91
+
92
+ @include m-screen (1400px ) {
93
+ width : 70% ;
94
+ }
95
+
96
+ @include m-screen (800px ) {
97
+ width : 90% ;
98
+ }
99
+
100
+ a {
101
+ @include flex (row , flex-start , start );
102
+ width : 100% ;
103
+ height : 100% ;
104
+ background-color : $secondary-color-dark ;
105
+ padding : 15px ;
106
+ border-radius : 5px ;
107
+ text-decoration : none ;
108
+ color : $font-color-dark ;
109
+
110
+ img {
111
+ height : 60px ;
112
+ width : 60px ;
113
+ object-fit : cover ;
114
+ border-radius : 50% ;
115
+ margin-right : 20px ;
116
+ }
117
+
118
+ .infoAluno {
119
+ @include flex (row , space-between , start );
120
+ width : calc (100% - 60px );
121
+ height : 100% ;
122
+
123
+ .who {
124
+ color : $primary-color-orange ;
125
+ margin-right : 10px ;
126
+ margin-bottom : 10px ;
127
+ }
128
+
129
+ .contentAluno {
130
+ @include flex (column , flex-start , start );
131
+ }
132
+
133
+ .box-button {
134
+ height : 100% ;
135
+ @include flex (column , center , center );
136
+
137
+ button {
138
+ background-color : $primary-color-orange ;
139
+ padding : 10px 20px ;
140
+ border-radius : 10px ;
141
+ color : $secondary-color-dark ;
142
+ border : solid 1px $primary-color-orange ;
143
+ }
144
+ }
145
+
146
+ }
147
+
148
+ p {
149
+ @include font-inter (600 );
150
+ }
151
+ }
152
+ }
153
+ }
154
+ }
155
+ }
156
+ }
0 commit comments