-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (83 loc) · 1.51 KB
/
style.css
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
body {
background-image: url("images/minimalist.jpg");
background-attachment: fixed;
background-size: cover;
}
.row {
margin-top: 20px;
}
.main-section {
display: table;
width: 100%;
height: 100px;
padding: 20px;
position: relative;
}
.main-section h1 {
text-align: center;
color: white;
font-size: 70px;
margin-top: 0.7em;
margin-bottom: 0.7em;
}
.main-section h1 span {
text-align: center;
color: rgba(15, 113, 131, 0.77);
}
.title {
letter-spacing: 2px;
text-decoration: none;
border-bottom: 2px solid white;
text-transform: uppercase;
font-weight: 200;
}
.section {
display: block;
}
.section-content {
padding: 60px;
display: block;
overflow: auto;
}
.blue-bg > .section-content {
background-image: linear-gradient(100deg,rgba(15, 113, 131, 0.77), #87b7b8);
font-size: 24px;
font-weight: 300;
letter-spacing: 1px;
}
.blue-bg h1, .blue-bg p, .blue-bg li {
color: white;
}
p {
font-size: 24px;
font-weight: 300;
letter-spacing: 2px;
}
.title-bl {
letter-spacing: 2px;
text-decoration: none;
border-bottom: 2px solid rgba(15, 113, 131, 0.77);
text-transform: uppercase;
font-weight: 200;
}
.clear-bg > .section-content {
background-color: white;
font-size: 24px;
font-weight: 300;
letter-spacing: 1px;
}
.clear-bg h1, .clear-bg p, .clear-bg li {
color: rgba(15, 113, 131, 0.77);
}
.logo {
padding: 5em;
margin-left: 32%;
}
@media (max-width: 1200px) {
.col-md-3 {
width: 50% !important;
}
.logo {
margin-left: 15%;
}
}