-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
46 lines (35 loc) · 894 Bytes
/
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
/* css styles */
/*-- use vars in CSS rules (we'll learn more about how to write CSS soon!) --*/
h1 {
font-color: $darkblue;
}
.button-styling {
background: $teal;
color: $darkblue;
border-color: $darkgray;
}
.blue-italicized {
color: blue;
font-style: italic;
}
/* <p class="blue-italicized">My first paragraph is styled</p> */
.blue-text {
color: blue;
}
/* following for test */
.page-header {
background-image: conic-gradient(from 0.75turn at 10% 45%, #ffe8d4 25%, transparent 10%),
linear-gradient(to top, transparent 55%, #faba81 55%),
linear-gradient(to left, #c3e3e3 20%, #86c3b5 20%);
}
.main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6 {
color:#009999;
}
/* 008080 */
.btn {
color: rgb(255 255 255 / 75%);
background-color: #846b5d;
}
#intro {
color: #846b5d;
}