-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
92 lines (79 loc) · 1.32 KB
/
style2.css
File metadata and controls
92 lines (79 loc) · 1.32 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
/* RESET */
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* GENERAL */
.header{
background-color: #f5deb3;
position: static;
}
h1{
font-size: 2em;
}
.h1{
text-align: center;
font-size: 4rem;
text-shadow: 2px 3px 2px rgba(4, 40, 51, 0.575);
color: #bd3f3ff3;
}
span{
white-space: nowrap;
}
.p{
font-size: 26px;
text-shadow: none;
}
.tab{
display: flex;
justify-content: space-evenly;
background-color: #dbc5a7;
margin: 6px 0 6px 0;
padding: 6px;
}
.tab a{
text-decoration: none;
font-size: 22px;
color: black;
cursor: pointer;
border-radius: 50px;
padding: 8px;
background-color: seashell;
border-inline: 10px;
}
.tab a:hover{
color: bisque;
transform: scale(1.1);
animation: all;
}
.type , .sub{
border-radius: 6px;
background-color: #deb887;
color: #ffffff;
margin-left: 5px;
margin-bottom: 5px;
font-size: 18px;
padding-left: 3px;
padding-right: 3px;
}
.ending{
display: flex;
flex-grow: 1;
bottom: 0;
background-color: #faebd757;
justify-content: center;
font: 20px sans-serif;
margin-left: 3px;
}
.ending p{
background-color: #a52a2a;
border-radius: 6px;
padding: 5px;
}
ul{
list-style: none;
}
body{
background-color: #deb887;
}