-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathreprohack.css
More file actions
82 lines (67 loc) · 1.33 KB
/
reprohack.css
File metadata and controls
82 lines (67 loc) · 1.33 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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Roboto&display=swap');
h1.title {display: none;}
:root {
--main-txt-color: #4c4949;
--h-color: #5443FF;
--a-color: #3C3888 ;
}
body {
color: var(--main-txt-color);
font-family: 'Roboto', sans-serif;
font-size: 18px;
line-height: 1.6;}
h1, h2, h3, h4, h5, h6 {
font-family: 'Roboto', sans-serif;
font-weight: bold; }
h1, h2, h3 {
color: var(--h-color);
}
h4, h5, h6 {
color: black;
}
h1 { font-size: 2em; }
h2 { font-size: 1.75em; }
h3 { font-size: 1.60em; }
h4 { font-size: 1.50em; }
h5 { font-size: 1.30em; }
h6 { font-size: 1.25em; }
.pull-left {
float: left;
width: 50%;
}
.pull-right {
float: right;
width: 40%;
}
a:link {
color: var(--a-color);
}
/* visited link */
a:visited {
color: var(--a-color);
}
/* mouse over link */
a:hover {
color: var(--a-color);
}
/* selected link */
a:active {
color: var(--a-color);
}
.btn-primary:link, .btn-primary:visited, .btn-primary:hover, .btn-primary:active {
color: white;
font-weight: bold;
background-color: #5443FF;
border-color: #3C3888;
}
.card {
background-color: #ECF0F1;
border: 5px solid var(--h-color);
padding: 50px;
margin: 20px;
overflow-wrap: break-word;
}
.selected-language {
display: inline;
border: 3px solid var(--h-color);
}