-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuora.css
More file actions
90 lines (70 loc) · 1.03 KB
/
Quora.css
File metadata and controls
90 lines (70 loc) · 1.03 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
*{
font-family: 'Courier New';
}
h1,h3{
color:#b92b27;
}
#login{
background-color: white;
}
#signup{
background-color: #b92b27;
color:white;
}
.upvote{
background-color: green;
}
p a {
color: purple;
background-color: yellow;
}
p + h3 {
text-decoration: underline;
}
.upvote + button{
background-color:cornflowerblue ;
color: darkblue;
}
div > input {
background-color: darksalmon;
}
input[type="text"]{
color:red;
}
input[type="password"]{
color:green;
}
input[type]{
background-color: white;
}
button:hover{
background-color: black;
color:white;
}
h3:hover{
text-decoration: overline;
}
button:active{
background-color: darkorchid;
color: goldenrod;
}
p:active{
font-weight: bold ;
color: green;
}
input[type="radio"]:checked + label{
color: red;
font-weight: bold;
}
div:nth-of-type(2n){
background-color: palevioletred;
}
h1::first-letter{
color: red;
}
p::first-line{
color:aqua;
}
p::selection{
background-color: yellow;
}