summaryrefslogtreecommitdiffstats
path: root/browser/components/pocket/content/panels/css/home.scss
blob: 9780963feebfd0519dcd5e3e2cce8c0a14cd0f6f (plain)
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
.pkt_ext_containerhome,
.pkt_ext_wrapperhome {
  overflow: hidden;
}

.pkt_ext_home {
  line-height: 20px;
  color: #363636;

  a {
    color: #008078;
    text-decoration: none;
  }

  a, p {
    font-size: 0.9em;
  }

  .pkt_ext_hr {
    height: 1px;
    background: linear-gradient(90deg, #83EDB8 0%, #83EDB8 0%, #83EDB8 0.01%, #1CB0A8 33.15%, #EF4056 67.4%, #FCB643 100%);
  }
  
  .pkt_ext_detail {
    margin: 18px 20px;
  }

  .pkt_ext_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    .pkt_ext_mylist_icon {
      background: url(../img/list-view.svg) no-repeat;
      background-size: contain;
      height: 1.2em;
      width: 1.2em;
      margin-inline-end: 8px;
    }
    a {
      height: 36px;
      display: flex;
      align-items: center;
      box-sizing: border-box;
      padding: 0 8px;
      margin: 12px;
      border-radius: 4px;
      &:hover {
        background: #F5F5F5;
      }
    }
    .pkt_ext_logo {
      background: url(../img/pocketlogo.svg) bottom right no-repeat;
      background-size: contain;
      height: 32px;
      width: 123px;
      margin: 0 20px;
    }
  }
  .pkt_ext_detail {
    a {
      display: block;
    }
    h2 {
      font-weight: 600;
      font-size: 1em;
    }
    h2,
    p {
      margin: 8px 0;
    }
    h3 {
      font-weight: 600;
      font-size: 1em;
      margin: 12px 0;
    }
    .pkt_ext_more {
      margin: 19px 0;
      .pkt_ext_chevron_right {
        background: url(../img/chevron-right.svg) no-repeat;
        background-size: contain;
        height: 1.2em;
        width: 1.2em;
      }
      ul {
        list-style-type: none;
        padding: 0;
        line-height: 14px;
        li {
          a {
            height: 44px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-sizing: border-box;
            border-bottom: 1px solid #EAEAEA;
          }
        }
      }
    }
    .pkt_ext_discover {
      line-height: 12px;
      margin: 20px 0;
      height: 40px;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 4px;
      &:hover {
        background: #F5F5F5;
      }
    }
  }
}