Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16653 | Rev 16660 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16650 stevensc 1
@use "../../css/shared/mixin.scss";
2
@import "../../css/shared/variables.scss";
3
@import "../../css/shared/breakpoints.scss";
4
 
5
.feed {
6
  @include mixin.widget;
7
  display: flex;
8
  flex-direction: column;
9
  padding: 1rem;
10
 
11
  &_header {
16653 stevensc 12
    align-items: center;
16650 stevensc 13
    display: flex;
14
    position: relative;
15
    gap: .5rem;
16
    width: 100%;
17
 
18
    img {
19
      width: 50px;
20
      height: 50px;
21
      border-radius: 100%;
22
    }
23
  }
24
 
25
  &_info {
26
    display: flex;
27
    flex-direction: column;
28
 
16653 stevensc 29
    h2 {
30
      color: $title-color;
31
      font-size: 1.1rem;
32
      font-weight: 600;
33
    }
34
 
16650 stevensc 35
    span {
36
      align-items: center;
37
      color: $subtitle-color;
38
      display: flex;
39
      gap: .5rem;
40
    }
41
  }
42
}
43
 
16655 stevensc 44
.feed_content {
45
  width: 100%;
46
  display: flex;
47
  flex-direction: column;
48
  gap: .5rem;
49
 
50
  p {
51
    color: $font-color;
52
    font-weight: 500;
53
  }
54
 
55
  .img-container {
56
    position: relative;
57
    max-height: 500px;
58
 
59
    img {
60
      position: absolute;
61
      top: 50%;
62
      left: 0;
63
      transform: translateY(-50%);
64
      z-index: 1;
65
      background: #000;
66
      object-fit: cover;
67
      height: 180%;
68
      width: 100%;
69
      max-height: none;
70
      filter: blur(20px);
71
    }
72
  }
73
}
74
 
16650 stevensc 75
.commentSection {
76
  max-height: 400px;
77
  overflow-y: auto;
78
  background: $background-gray;
79
  margin-top: 1rem;
80
  padding: 1rem;
81
}
82
 
83
.feedCommentContainer {
84
  display: flex;
85
  justify-content: flex-start;
86
  align-items: center;
87
  margin-top: 1rem;
88
  gap: 10px;
89
 
90
  img {
91
    border-radius: 100px;
92
    width: 43px;
93
    height: 43px;
94
    object-fit: cover;
95
  }
96
 
97
  .commentInput {
98
    margin: 0;
99
    flex: 1;
100
    padding: 0.5rem 0;
101
    border: none;
102
    font-size: 1rem;
103
  }
104
 
105
  .submitButton {
106
    height: 2.5rem;
107
    margin: 0;
108
    width: auto;
109
    margin-top: 0.5rem;
110
    background-color: $primary-lightblue;
111
    border: none;
112
    padding: 0.5rem 1rem;
113
    color: white !important;
114
    border-radius: var(--global-border-radius);
115
    border: 1px solid $primary-lightblue;
116
    font-size: 1rem;
117
    transition: 0.2s;
118
 
119
    &:hover {
120
      background-color: $primary-lightblue-hover;
121
    }
122
  }
123
}