-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
120 lines (102 loc) · 1.91 KB
/
style2.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
@media only{}
body{
background-color: #FFFFFF;
margin: 0px;
padding: 0px;
}
ul{
list-style: none;
}
a{
text-decoration: none;
}
section{
width:100%;
height:95vh;
background-image:url("images/bg.png");
background-repeat: no-repeat;
background-size: cover;
position: relative;
}
nav{
display: flex;
justify-content: space-between;
align-items: center;
height: 60px;
background-color: #FFFFFF;
box-shadow: 2px 2px 12px rgba(0,0,0,0,2);
padding: 0px 5%;
}
nav ul{
display: flex;
}
nav ul li a{
margin: 30px;
font-family: myriad pro regular;
color: #505050;
font-size: 15px;
text-align: center;
font-weight: 700;
}
.logo{
font-family: RoadTest;
color: #000000;
background-color: #333;
font-size: 22px;
overflow: hidden;
}
.active{
font-weight: bold;
color: #2d2a2a;
transform: scale(1.1);
border: none;
}
.about-container{
width:80%;
height:330px;
background-color:#FFFFFF;
border-radius:14px;
box-shadow:2px 2px 12px rgba(0,0,0,0.2);
display: flex;
margin: 8% auto 20px auto;
position: relative;
justify-content: space-evenly;
align-items: center;
}
.about-container img{
height: 250px;
}
.about-text{
width: 550px;
}
.about-text p:nth-child(1){
color: #403e3e;
font-family: myriad pro;
font-weight: bold;
font-size: 23px;
line-height: 0px;
}
.about-text p:nth-child(2){
color: #3e3d3d;
font-size:13px;
font-family: myriad pro;
font-weight: bold;
line-height: 5px;
}
.about-text p:nth-child(3),
.about-text p:nth-child(4){
color: #7e7d7d;
font-family: calibri;
font-size:16px;
}
.about-text button {
width: 140px;
height: 40px;
color: #FFFFFF;
outline: none;
border: none;
font-weight: bold;
border-radius: 10px;
font-family: calibri;
background-color: #262525;
}