-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (77 loc) · 1.31 KB
/
style.css
File metadata and controls
89 lines (77 loc) · 1.31 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
:root{
--black:#0B0C10;
--dark-gray:#1F2833;
--gray:#C5C6C7;
--sky:#66FCF1;
--green:#45A29E;
}
*{
box-sizing: border-box;
}
body,html{
height: 100%;
align-items: center;
/* background: -webkit-linear-gradient(left, rgb(188, 188, 188),rgb(86, 82, 82)); */
}
h1{
text-align: center;
}
/* brand */
hr{
background-color: #333;
margin: 0;
color:white ;
}
.brand{
background-color: #333;
margin: 0;
color:white ;
padding: 20px;
}
/* nacbar */
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
.link-active{
color: var(--sky);
}
/* home */
.bg-img{
height: 100%;
background-image: url("image/i-4.jpg");
filter: blur(8px);
-webkit-filter: blur(8px);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bg-txt{
color: black;
font-size: xx-large;
border: 3px solid black;
position: absolute;
top: 40%;
left: 25%;
right:25%;
width: 50%;
padding: 20px;
text-align: center;
z-index: 2;
}