-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (56 loc) · 1.08 KB
/
styles.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
* {
box-sizing: border-box;
}
.fixed {
background-color:rgb(231, 183, 231);
top: 10px;
width: 100%;
max-width: 500px;
position: fixed;
z-index: 1;
padding-left: 20px;
}
.fixed-head {
background-color: grey;
}
body {
width: 500px;
top: 200px;
font-family:Tahoma;
font-size: 15px;
font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
}
h1 {
font-family: Brush Script MT;
font-size: 40px;
}
h1, h2, h3 {
color: purple;
}
.menu {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
list-style: none;
padding:10px;
max-width: 700px;
}
a {
text-decoration: none;
color: purple;
}
.pink-box {
background-color: rgb(231, 183, 231);
padding: 1px;
border-top-right-radius: 20px;
border-bottom-left-radius: 20px;
}
.content-pink {
position: relative;
top: 300px;
}
.pink-box-text {
margin: 15px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}