-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
115 lines (115 loc) · 1.97 KB
/
index.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
*{
margin: 0;
padding: 0;
}
body{
background-color:#F8F3ED;
}
img{
position: absolute;
width: 561px;
height: 700px;
right: 0px;
top: 0px;
}
.vin{
position: absolute;
height: 14px;
left: 4%;
top: 4%;
}
.law{
position: absolute;
height: 14px;
left: 10%;
top: 4%;
color: #ADA9A7;
}
.schwartz{
position: absolute;
height: 64px;
left: 4%;
top: 24%;
font-family: Playfair Display;
font-style: normal;
font-weight: bold;
font-size: 48px;
line-height: 64px;
}
.boston{
position: absolute;
height: 25px;
left: 4%;
top: 40%;
font-family: 'Nunito Sans', sans-serif;
font-weight:100;
font-size: 23px;
line-height: 25px;
color:grey;
}
.line{
position: absolute;
height: 50px;
left: 4%;
top: 50%;
font-family: 'Nunito Sans',sans-serif;
font-style: normal;
font-weight: lighter;
font-size: 20px;
line-height: 25px;
}
nav{
display: flex;
padding: 2% 6%;
justify-content: space-between;
align-items: center;
}
.nav-links{
flex: 1;
text-align: right;
}
.nav-links ul li{
list-style: none;
display: inline-block;
padding: 8px 12px;
position: relative;
}
.nav-links ul li a{
color: #fff;
text-decoration: none;
font-size: 13px;
font-family: 'Nunito Sans',sans-serif;
}
.nav-links ul li::after{
content: '';
width: 0;
height: 2px;
background: grey;
display: block;
margin: auto;
transform: 0.5s;
}
.nav-links ul li:hover::after{
width: 100%;
}
.BookCall li a{
position: absolute;
height: 50px;
left: 4%;
top: 55%;
font-family: 'Nunito Sans',sans-serif;
font-style: normal;
font-size: 15px;
list-style: none;
text-decoration: none;
background: lightgray;
width:120px;
height: 28px;
margin: 45px auto;
text-align: center;
padding: 10px;
color: black;
}
.BookCall li a:hover{
background-color: cadetblue;
}