-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
113 lines (107 loc) · 2.24 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
107
108
109
110
111
112
113
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
body{
background-image: url('https://images.pexels.com/photos/1072179/pexels-photo-1072179.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
background-size: cover;
}
.container{
font-family: "Arial", Helvetica, sans-serif;
color: rgb(255, 255, 255);
font-weight: bold;
border: rgb(73, 201, 252) 5px;
border-style: inset;
border-radius: 20px;
padding: 50px;
position: absolute;
top:10%;
font-size: 25px;
white-space: nowrap;
}
.container:hover{
color: aliceblue;
background: rgb(0, 0, 0);
box-shadow: 0px 2px 10px 10px #f6f6f6;
}
#t{ position: absolute;
padding:19px 10px;
margin: 59px 52ch;
}
.z{
height:20vh;
width: 100%;
background-image: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6))
background-size:cover;
background-position: center;
}
nav{
display: flex;
align-items: center;
justify-content: space-between;
padding-top:20px ;
padding-left:5% ;
padding-right:5%;
}
.L{
color:rgb(255, 255, 255);
font-size: 35px;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
nav ul li{
list-style: none;
display: inline-block;
padding: 5px 20px;
}
nav ul li a{
color: aliceblue;
text-decoration: none;
font-size: 20px;
font-weight: bold;
}
nav ul li a:hover{
color: rgb(255, 80, 80);
}
.about{
color: rgb(255, 255, 255);
font-size: 30px;
}
#w{
margin:20px;
margin-right: 80vh;
color: aliceblue;
padding:60px 20px 20px 64px;
font-size: 22px;
}
.b{
color: aliceblue;
margin-left: 83px;
font-size: 23px;
}
#button{
margin-left: 79px ;
margin-top: 2px;
}
#btn {
border:2px solid red;
background: #000000;
color: rgb(255, 255, 255);
padding:8px;
font-size: 1.5rem;
border-radius: 1rem;
cursor: pointer;
transition-duration: 0.4s;
}
#btn:hover {
background: rgb(0, 0, 0);
box-shadow: 0px 2px 10px 10px #f6f6f6;
color: rgb(255, 80, 80);
border-color: white;
}
footer{
align-items: center;
padding: 50px 70ch;
padding-bottom: 0px;
}