blob: f89f0b1ff7a2c7717031a83f5604ce177d033ae0 (
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
.sqcom-about-page {
font-family: 'Roboto', sans-serif;
font-size: 15px !important;
font-weight: 300;
}
.sqcom-about-page-entry {
padding-top: 65px;
padding-bottom: 65px;
background-color: #4b9fd5;
}
.sqcom-about-page-entry a {
color: #4b9fd5;
}
.sqcom-about-page-entry .about-page-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.sqcom-about-page-intro {
}
.sqcom-about-page-intro > h1 {
line-height: 56px;
color: #fff;
font-size: 44px;
font-weight: 300;
}
.sqcom-about-page-intro > .button {
height: 44px;
line-height: 42px;
padding-left: 20px;
padding-right: 20px;
border-color: #fff;
border-radius: 3px;
color: #fff;
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
transition: none;
}
.sqcom-about-page-intro > .button:hover {
background-color: #fff;
color: #4b9fd5;
}
.sqcom-about-page-intro > .button-active {
border-color: #b0eb41;
background-color: #b0eb41;
color: #225463;
}
.sqcom-about-page-intro > .button-active:hover {
border-color: #91d315;
background-color: #91d315;
color: #225463;
}
.sqcom-about-page-instance {
display: flex;
align-items: stretch;
}
.sqcom-about-page-instance .about-page-projects {
display: flex;
justify-content: center;
align-items: center;
min-width: 190px;
margin-left: 15px;
padding: 25px;
background-color: #fff;
color: #686868;
font-size: 18px;
font-weight: 300;
}
.sqcom-about-page-instance .about-page-projects-link {
font-weight: 400;
}
.sqcom-about-page-instance .about-page-issue-types > li + li {
margin-top: 20px;
}
.sqcom-about-rules {
margin-bottom: 45px;
background-color: #4193c8;
}
.sqcom-about-rules .about-page-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.sqcom-about-rules .button {
height: 33px;
line-height: 30px;
padding-left: 15px;
padding-right: 15px;
border-color: #fff;
border-radius: 3px;
color: #fff;
font-size: 14px;
font-weight: bold;
text-transform: uppercase;
}
.sqcom-about-rules .button:hover {
background-color: #fff;
color: #4b9fd5;
}
.sqcom-about-rules-link {
line-height: 36px;
padding: 24px 40px;
border: none;
color: #c1d9ea;
font-size: 20px;
}
.sqcom-about-rules-link:first-child {
margin-left: -40px;
}
.sqcom-about-rules-link:hover {
background-color: #3988bc;
color: #fff;
}
.sqcom-about-rules-link:hover path {
fill: #fff;
}
.sqcom-about-quality-model svg {
transform: translateY(-3px) !important;
}
|