-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelo1.css
More file actions
105 lines (86 loc) · 2.22 KB
/
helo1.css
File metadata and controls
105 lines (86 loc) · 2.22 KB
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
body{
font-family: Arial, Helvetica, sans-serif;
background-image:url('new2.jpg');
background-repeat:no-repeat;
background-attachment:fixed;
background-size:cover;
}
nav{
box-sizing: border-box;
border: 2px solid rgb(255, 47, 165);
background-color: #fff;
display: flex;
top: 0;
left: 0;
width: 100%;
align-items: center;
}
nav h2{
margin-left: 10px;
cursor: pointer;
color: #000;
}
nav h2 span{
font-style: italic;
color: rgb(255, 47, 165);
}
nav ul{
flex: 1;
text-align: center;
}
nav ul li{
display: inline-block;
margin: 10px 20px ;
padding: 2px;
}
nav ul li a{
text-decoration: none;
color: #000;
}
nav ul li a:hover{
padding: 12px;
background-color: rgb(255, 47, 165);
transition: 1s;
}
nav .btn{
color: #000;
text-decoration: none;
margin-right: 25px ;
padding: 10px;
box-sizing: border-box;
padding: 12px;
background-color: rgb(255, 47, 165);
}
.content h1{
position: absolute;
margin-top: 15%;
margin-left: 5%;
color: #fff;
font-size: 50px;
}
.content span{
color: #000;
}
.shop{
position: absolute;
margin-left: 8%;
margin-top: 25%;
font-size: 25px;
}
.shop a{
text-decoration: none;
color: #fff;
background-color: rgb(255, 47, 165);
padding: 0%;
border: 2px solid #000;
}
footer a{
color: #000;
text-decoration: none;
position: absolute;
margin-left: 75%;
margin-top: 35%;
border: 2px solid #000;
font-size: 25px;
background-color: rgb(255, 47, 165);
}