-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (85 loc) · 1.44 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100vh;
background-image:url(homepage.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position-y:50%;
font-family: sans-serif;
color: #5a5648;
}
.logo{
width: 40%;
margin-left: 5%;
font-size: 50px;
letter-spacing: 4px;
}
nav{
display: flex;
margin-top: 2%;
}
.nav-list{
display: flex;
margin-left: 0%;
margin-top: 0.5%;
}
.na-items{
list-style: none;
margin-left: 0%;
padding: 10px;
font-size: 24px;
}
.na-items a{
text-decoration: none;
color: #5a5648;
transition: color .4s;
}
.na-items a:hover{
color:rgba(70, 98, 15, 0.816);
}
.main-text{
height: 30px;
font:100px;
margin-left:40% ;
margin-top: 15%;
letter-spacing: 5px;
font-family: 'Times New Roman', Times, serif;
}
.body-text{
font-size: 18px;
width: 40%;
margin-left: 50%;
line-height: 25px;
margin-top: 2%;
font-style: italic;
font-family: 'Times New Roman', Times, serif;
font-stretch:extra-expanded;
color: #5a5648;
letter-spacing:1px;
}
.mail{
background-color: transparent;
outline: none;
border: 4px solid #706c5fdb;
width: 200px;
height: 50px;
border-radius: 90px;
margin-left: 75%;
margin-top: 2%;
transition: 0.5s;
font-family:'Times New Roman', Times, serif;
font-style: italic;
color: #706c5f;
font-size: 18px;
}
.mail:hover{
background-color: #706c5f;
color: #fff;
}
.button{
text-decoration: none;
}