-
Notifications
You must be signed in to change notification settings - Fork 0
/
abstyl.css
82 lines (73 loc) · 1.3 KB
/
abstyl.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
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@600&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
body{
background-image: url(Lda.jpg);
background-repeat: repeat;
-webkit-background-size: cover;
background-size: cover;
background-position: center center;
height: 100vh;
font-family: Arial;
font-weight: 600;
font-size: 16px;
}
a{
text-decoration: none;
}
header{
display: -webkit-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
justify-content: space-between;
align-items: center;
padding: 30px 70px;
}
.logo{
cursor: pointer;
}
.nav-area{
list-style: none;
}
.nav-area li{
display: inline-block;
padding: 0 15px;
text-decoration: uppercase;
}
.nav-area li a {
transition: .3s;
color: #fff;
}
.nav-area li a:hover{
color: #d22938;
}
.btn-area{
cursor: pointer;
color: #fff;
font-size: 16px;
letter-spacing: 2px;
text-transform: uppercase;
padding: 10px 30px;
border-radius: 5px;
background: #d22938;
transition: .3s;
}
.btn-area:hover{
background-color: #FF8C00;
border-radius: 40px;
letter-spacing: 5px;
}
.about{
font-size: 30px;
font-family: Quicksand;
margin-top: 110px;
margin-left: 120px;
color: #F0FFF0;
padding: 10px 30px;
letter-spacing: 2px;
}