summaryrefslogtreecommitdiff
path: root/sass/_projects.scss
blob: bcc442bcffb35a555a1798f64c382b302ea093af (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
#projects {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  @media only screen and (min-width: $cut) {
    width: 80%;
  }
}

.user-projects {
  margin: 20px auto;
  clear: both;
  display: block;
  width: 100%;
  img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
  }
  h5 {
    margin: 0;
  }
  li {
    color: $main;
    font-size: 1.1rem;
  }
  p {
    margin-right: 5px;
  }
}

.contents,
.contents-right {
  display: block;
  @media only screen and (min-width: $cut) {
    margin-left: auto;
    margin-right: auto;
    width: 48%;
    float: none;
  }
}