-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotesCSS.css
More file actions
100 lines (80 loc) · 1.75 KB
/
Copy pathnotesCSS.css
File metadata and controls
100 lines (80 loc) · 1.75 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
93
94
95
96
97
98
99
100
/* Notes to self */
div {
background-color:#FFF5DE;
padding: 20px;
margin: 10px;
border: solid;
}
h1 {color: #3C5186;
text-align: center;
font-weight: 300;
letter-spacing: 5px;
}
h2 {font-family: cursive;}
/* cursive is a generic family name vs. a specific font family name */
a {text-decoration: none;}
a:hover {background-color: lightgreen;}
p {
line-height:1;
font-size: 16px;
}
h2,h3 {
text-decoration: underline;
}
/* Example of pseudo elements */
h2, h3::first-letter {
font-size:35px;
}
/*This applies it to the whole document, as I haven't specified an element */
::selection {background-color: #fec5bb;}
/*psuedo-class example: change size when heading is hovered over */
/* h2,h3,h4:hover {
font-size: 10px;
}
/* This is pretty obnoxious, but an example of the after psuedo element */
li::after {
content: "☆";
}
*/
#hover {
border-radius: 0;
transition: border-radius 5s 3s, background-color 2s;
}
#hover:hover {
background-color: rgba(50,150,150,.75);
border-radius: 25%
}
.demo {
color:#e63946;
background-color:#a8dadc;
}
h2,h3,h4 {
margin-bottom: 0px;
}
input[type="text"] {
color: magenta;
}
/* ul li:nth-of-type(2n) { background-color: yellow;} */
.alphaopacity
{
color: rgba(250,0,140,0.4);
width:80%;
height: 100px;
background-color: white;
border: solid;
margin: 10px;
}
.opacity {
height: 90px;
background-color: blue;
color: rgb(0,250,140);
border: solid;
border-color: black;
padding: 30px;
opacity: .5;
}
#blendcycle {
height: 80px;
display: block;
padding-left: 30%;
}