-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle-about.scss
123 lines (107 loc) · 1.69 KB
/
style-about.scss
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
@charset "UTF-8";
body {
background: #f4f4f4;
font-family: "Verdana", sans-serif;
margin: 0;
padding: 0;
}
.about-us {
display: flex;
align-items: center;
min-height: 100vh;
width: 100%;
padding: 90px 0;
background: #f4f4f4;
}
.pic {
height: 600px;
width: 500px;
border-radius: 12px;
max-width: 100%;
}
.about {
width: 1130px;
max-width: 85%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-around;
}
.text {
width: 540px;
}
.text h2 {
color: #333;
font-size: 90px;
font-weight: 600;
margin-bottom: 10px;
}
.text h5 {
color: #333;
font-size: 22px;
font-weight: 500;
margin-bottom: 20px;
}
span {
color: #6892d5;
}
.text p {
color: #333;
font-size: 18px;
line-height: 25px;
letter-spacing: 1px;
}
.data {
margin-top: 30px;
}
.hire {
font-size: 18px;
background: #6892d5;
color: #fff;
text-decoration: none;
border: none;
padding: 12px 25px;
border-radius: 6px;
transition: 0.5s;
}
.hire:hover {
background: #000;
}
html {
scroll-behavior: smooth;
scroll-padding-top: 6rem;
overflow-x: hidden;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
@media (max-width: 991px) {
.about {
flex-direction: column;
align-items: center;
text-align: center;
}
}
.about-text {
line-height: 1.6;
font-size: 18px;
color: #333;
}
.about-text p {
margin-bottom: 20px;
}
.about-text ul {
list-style-type: none;
padding-left: 0;
}
.about-text ul li {
margin-bottom: 10px;
}
/* Ajustare padding pentru navbar și footer */
body {
padding-top: 70px; /* height navbar-ului */
padding-bottom: 50px; /* height footer-ului */
}
/*# sourceMappingURL=AboutUsDesign.css.map */