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

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

.jobs-background {
  background: url("../../img/headers/team.jpg") no-repeat center;
  background-size: cover;

  .container .row .col-md6 {
	  padding-right: 5%;

	  @media (max-width: $break-small) {
			text-align: left;
			font-size: 25px;
		}
  }
}

.section-company-description {
	margin-top: 130px;

	h3{
		font-size: 22px;
	}

	p {
		max-width: 700px;
		margin: 0 auto;
		padding-top: 20px;
		font-size: 18px;
		text-align: center;

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

.section-jobs-opening {
	margin-top: 70px;
	margin-bottom: 100px;

	a:hover, a:focus {
		text-decoration: none;
		font-decoration: none;
		color: #2a2a36;
		border-bottom: none;
		cursor: pointer;
		cursor: hand;
	}

	.jobs {
		position: relative;

		@media (max-width: $break-small) {
			text-align: left;
			font-size: 25px;
		}
	}

	.icon-arrow {
    background: url(../../img/common/simple_arrow_down_grey.svg) center/contain no-repeat;
    position: absolute;
    width: 20px;
    height: 100%;
    right: 20px;
    top: 2px;
  }

	.wrapper-text {
		padding-top: 20px;
		width: 60%;
    margin: 0 auto;

		p {
			max-width: 700px;
			padding-top: 20px;
			font-size: 18px;
		}
    ul {
      padding-left: 0;
    }
		@media (max-width: $break-small) {
			margin: 0;
			width: 100%;
		}
	}
}