-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
56 lines (47 loc) · 1.01 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
body {
font-family: Arial, sans-serif;
margin: 40px;
}
.header.blank {
background: #fff;
height: 0;
}
.header.blue {
height: 15%;
background: linear-gradient(135deg, #72edf2 10%, #5151e5 100%);
border-radius: 5px;
}
.header.red {
height: 15%;
background: linear-gradient(135deg, #ff6a6a 10%, #e60000 100%);
border-radius: 5px;
}
.header.green {
height: 15%;
background: linear-gradient(135deg, #60d473 10%, #429321 100%);
border-radius: 5px;
}
.header.orange {
height: 15%;
background: linear-gradient(135deg, #ffb347 10%, #ff8008 100%);
border-radius: 5px;
}
.header.purple {
height: 15%;
background: linear-gradient(135deg, #a18cd1 10%, #fbc2eb 100%);
border-radius: 5px;
}
h1, h2, h3, h4, h5, h6 {
font-family: Arial, sans-serif;
}
pre {
background-color: #f5f5f5;
padding: 10px;
border-radius: 5px;
}
code {
font-family: 'Courier New', monospace;
background-color: #f5f5f5;
padding: 2px 4px;
border-radius: 4px;
}