Welcome to mirror list, hosted at ThFree Co, Russian Federation.

about.scss « pages « css « assets - github.com/nextcloud/nextcloud.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67352ff04a72dc62d53fd88d3b624f5bc097a2ab (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
@import '../variables';
@import '../modules/transparent-navbar';

.about-background {
  background: url("../../img/headers/about.jpg") no-repeat;
  background-position: center;
  background-size: cover;
}

footer.page-footer {
	margin-top: 20px;
}

section {
	padding-top: 80px;
/* 	display: inline-block; */

	.section--heading-1 {
		padding: 80px 0 30px 0;
		text-align: center;
	}

	.section--intro {
		font-weight: 600;
		padding-top: 30px;
        color: $dark-blue;

		@media (max-width: $break-small) {
			text-align: left !important;
		}
	}

    .newsrow {
        margin-top: 70px;
		margin-bottom: 30px;

		.col-md-4 {
			padding: 15px;
		}
    }
}


.section--differentiators {
	.quote--container {
		display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      padding: 40px 40px 30px 40px ;
      background: #FFFFFF;
      border: 1px solid #FCFCFC;
      -webkit-box-shadow: 0 1px 40px 0 rgba(0,0,0,0.14);
      box-shadow: 0 1px 40px 0 rgba(0,0,0,0.14);
	  margin: 30px 20px;
		@media (min-width: $break-big) {
			float: right;
			width: 40%;
			min-width: 300px;
		}

      blockquote {
          font-style: italic;
          font-size: 1.6em;
          margin: 0;
      }

      .quote--brand {
          padding-top: 5px;
          display: flex;
          justify-content: center;
          align-items: center;

          .quote--brand--logo {
              background: url("../../img/conference/der-spiegel-logo.png") no-repeat center/contain;
              width: 46px;
              height: 46px;
          }

          .quote--brand--text a {
              margin: 0;
              padding: 0 0 0 10px;
              font-weight: 600;
              text-transform: uppercase;
              font-size: 15px;
              color: $medium-grey;
          }
      }
  }
}


.img-responsive {
    padding-top: 10px;
    @media (min-width: $break-big) {
        margin-bottom: 50px;
    }
    @media (min-width: $very-wide) {
        /* 	margin-bottom: 0px; */
    }
}