forked from SouvixP/Codeforces-Handler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
94 lines (77 loc) · 1.21 KB
/
styles.css
File metadata and controls
94 lines (77 loc) · 1.21 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
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");
* {
margin: 0;
}
.header {
padding: 3%;
text-align: center;
background-color: whitesmoke;
color: blue;
font-size: large;
font-family: "Times New Roman", Times, serif;
}
p{
font-size: medium;
}
label{
font-size: larger;
}
a{
font-size: larger;
}
.dark-mode {
background: #333;
color: #fff !important;
}
.dark-control {
text-align: right;
color: #666;
text-decoration: underline;
font-size: 10px;
cursor: pointer;
padding: 18px 0px 0px 0px;
margin-left: auto;
}
.dark-mode .dark-control {
color: #fafafa;
}
.footer-controls {
display: flex;
justify-content: space-between;
}
.dark-mode {
color: #fafafa;
}
body {
background-color: whitesmoke;
}
.color2 {
margin-left: 0;
margin-right: 0;
padding-left: 3%;
padding-right: 3%;
padding-top: 3%;
padding-bottom: 3%;
background-color: lightblue;
}
.color1 {
margin-left: 0;
margin-right: 0;
padding-left: 3%;
padding-right: 3%;
padding-top: 3%;
padding-bottom: 3%;
background-color: whitesmoke;
}
a:link {
color: blue;
}
a:visited {
color: purple;
}
a:hover {
color: hotpink;
}
a:active {
color: red;
}