-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
106 lines (86 loc) · 1.74 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body, html{
background-image: -webkit-linear-gradient(bottom,#2193b0,#6dd5ed);
}
nav{
border: 1px solid red;
list-style-type: none;
display: inherit;
margin: 10px;
border-radius: 13px;
}
nav a{
text-decoration: none;
list-style-type: none;
color: white;
}
nav a:hover{
color: black;
}
.navdiv1{
display: flex;
justify-content: flex-start;
font-family: 'Fasthand';
font-size: 2rem;
color: white;
padding: 10px;
}
.navdiv2{
display: flex;
justify-content: flex-end;
font-family: 'Rosarivo', serif;
padding: 10px;
}
section{
text-align: center;
padding: 10px;
}
.sectiondiv1{
background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0)), url('https://wallpaperaccess.com/full/2109968.jpg');
background-repeat:no-repeat;
background-size:cover;
border: 1px solid red;
color: white;
padding: 10px;
margin-bottom: 10px;
height: 400px;
border-radius: 13px;
}
.sectiondiv2{
border: 1px solid red;
padding: 10px;
margin-bottom: 10px;
background-image: url('https://cdn.dribbble.com/users/1036808/screenshots/7385069/media/aad192da74d690845d05eac18c5cadae.gif');
background-repeat:no-repeat;
background-size: cover;
color:white;
height: 600px;
border-radius: 13px;
}
.sectiondiv3{
border: 1px solid red;
padding: 10px;
margin-bottom: 10px;
border-radius: 13px;
}
.sectiondiv4{
border: 1px solid red;
padding: 10px;
margin-bottom: 10px;
border-radius: 13px;
}
footer{
border: 1px solid red;
text-align: center;
font-size: 30px;
}
footer a{
color:black;
}
footer a:hover{
color:#0072b1;
}