forked from cal-cs184/hw-webpage-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styler.css
69 lines (58 loc) · 1.08 KB
/
styler.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
body {
text-align: center;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-image: linear-gradient(aliceblue, rgb(168, 148, 177))
}
h1 {
padding-top: 30px;
color: rgb(158, 119, 176);
font-size: 50px;
font-weight: 100px;
}
.des {
position:sticky;
margin: auto;
width: 1000px;
padding-bottom: 30px;
max-width: fit-content;
}
h3 {
font-size: 25px;
}
.bar {
display: flex;
position: sticky;
align-items: center;
justify-content: space-between;
top: 0px;
background-color: rgba(170, 140, 183, 0.582);
background-blend-mode: darken;
color:white;
padding: auto;
max-width: 100%;
margin: auto;
width: 600px;
border-radius: 30px;
}
.wpList {
display: flex;
list-style: none;
color:white;
align-self: center;
font-weight: 1000;
}
a {
color: white;
}
a:visited {
color: white;
}
a:hover {
color: rgb(79, 6, 111);
}
a:active {
color: white;
}
.wpList li {
margin: 20px 100px 20px 50px;
}