This repository has been archived by the owner on Apr 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
141 lines (121 loc) · 2.7 KB
/
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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*!
* @author rx1310 <rx1310@inbox.ru>
* @copyright Copyright (c) o1310, 2020
* @license MIT License
*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
*,
*::before,
*::after {
-webkit-touch-callout: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: none;
}
@-ms-viewport { width: device-width; }
@-o-viewport { width: device-width; }
@viewport { width: device-width; }
body {
color: #212426;
background-color: #ebebeb;
font-family: "Open Sans", sans-serif;
margin: 0;
line-height: 1.15;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-text-size-adjust: 100%;
-moz-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
}
a,
a:visited {
color: #000000;
}
a:hover,
a:active {
color: #8a8a8a;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
border: 0;
border-top: 1px solid #cecece;
}
main {
padding: 1.4em;
}
.main-box, a {
-webkit-transition: background-color .6s, color .6s;
-moz-transition: background-color .6s, color .6s;
-o-transition: background-color .6s, color .6s;
transition: background-color .6s, color .6s;
}
.main-box {
background-color: #ffffff;
padding: .5em 1.2em;
margin-bottom: .8em;
-webkit-box-shadow: 0 0.15em 0.8em -0.2em rgba(0, 0, 0, .4);
-moz-box-shadow: 0 0.15em 0.8em -0.2em rgba(0, 0, 0, .4);
box-shadow: 0 0.15em 0.8em -0.2em rgba(0, 0, 0, .4);
-webkit-border-radius: 0.5em;
-moz-border-radius: 0.5em;
border-radius: 0.5em;
}
@media (min-width: 768px) {
.main-box {
margin: 0em 3em .8em 3em;
}
}
@media (min-width: 1024px) {
.main-box {
margin: 0em 4em .8em 4em;
}
}
@media (min-width: 1440px) {
.main-box {
margin: 0em 5em .8em 5em;
}
}
.main-box:active,
.main-box:hover {
background-color: #000000;
color: white;
padding: .5em 1.2em;
margin-bottom: .8em;
-webkit-box-shadow: 0 0.15em 0.8em -0.2em rgba(0, 0, 0, .8);
-moz-box-shadow: 0 0.15em 0.8em -0.2em rgba(0, 0, 0, .8);
box-shadow: 0 0.15em 0.8em -0.2em rgba(0, 0, 0, .8);
}
header,
footer {
padding: .6em 1em;
text-align: center;
}
.tag {
background-color: #212426;
color: white;
padding: .2em .4em;
font-size: small;
-webkit-border-radius: 0.5em;
-moz-border-radius: 0.5em;
border-radius: 0.5em;
}
.tag-red {
background-color: #B71C1C;
}
.tag-green {
background-color: #1B5E20;
}
.tag-blue {
background-color: #0D47A1;
}
.tag-orange {
background-color: #af5c13;
}