-
Notifications
You must be signed in to change notification settings - Fork 0
/
style3.css
93 lines (83 loc) · 1.62 KB
/
style3.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: Merienda-VariableFont_wght;
src: url(Fonts/Merienda/Merienda-VariableFont_wght.ttf);
}
@font-face {
font-family: EduAUVICWANTHand-VariableFont_wght;
src: url(Fonts/Edu_AU_VIC_WA_NT_Hand/EduAUVICWANTHand-VariableFont_wght.ttf);
}
body{
background-color: #101720;
background-image: url(Image/Dark.jpg);
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: cover;
}
header{
text-align: center;
padding: 25px;
font-size: 28px;
font-family: EduAUVICWANTHand-VariableFont_wght;
}
header a{
text-decoration: none;
color: aqua;
}
.navbar{
padding: 3px;
}
.navbar ul{
border: 2px solid;
padding: 2px;
overflow: hidden;
background-color: #303A52;
}
.navbar li{
list-style-type: none;
float: left;
}
.navbar a{
text-decoration: none;
display: block;
color: black;
padding: 15px;
text-align: center;
color: aqua;
font-size: 22px;
}
.navbar a:hover{
background-color:#202738;
}
.stuff h1{
text-align: center;
padding: 10px;
color: aqua;
border: 2px ridge;
height: auto;
width: 15em;
font-family: EduAUVICWANTHand-VariableFont_wght;
border-radius: 25px;
}
.stuff{
height: 50em;
width: auto;
padding: 50px;
}
.stuff p{
padding: 10px;
color: aqua;
font-family: Merienda-VariableFont_wght;
font-size: 22px;
}
.stuff h2{
padding: 10px;
color: aqua;
font-family: EduAUVICWANTHand-VariableFont_wght;
border-radius: 25px;
}