-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
147 lines (137 loc) · 2.59 KB
/
style.css
File metadata and controls
147 lines (137 loc) · 2.59 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
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
142
143
144
145
146
147
/*
Theme Name: ZERRO
Version: 0.3
Description: Personal theme
Author: Pavel Kuleshov
Author URI: https://3err0.ru
*/
html, body {
background: #fafafa;
}
body {
line-height: 1.5;
}
h1 {
font-size: 1.7em;
font-weight: normal;
line-height: 1.2em;
margin-top: 0;
}
a {
color: rgb(39, 110, 242);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.image {
background-color: white;
border-radius: 2px;
box-shadow: 0 4px 6px 1px rgba(50, 50, 50, 0.14);
box-sizing: border-box;
color: black;
line-height: 0;
margin: 5.5em auto 0;
max-width: 640px;
width: 100%;
font-size: 75%;
}
.image img{
width: 100%;
}
.content {
background-color: white;
border-radius: 2px;
box-shadow: 0 4px 6px 1px rgba(50, 50, 50, 0.14);
box-sizing: border-box;
color: black;
line-height: 1.5;
margin: 5.5em auto 0;
max-width: 640px;
padding: 30px 35px 30px 37px;
width: 100%;
font-family: 'Segoe UI', Tahoma, sans-serif;
font-size: 75%;
}
.content:after {
visibility: hidden;
display: block;
content: "";
clear: both;
height: 0;
}
.content > span {
display: block;
}
.content p:last-child {
margin-bottom: 4px;
}
@media (max-width: 700px) {
body {
margin: 1em 2em 2em;
}
}
@media (max-width: 400px) {
body {
margin: 3em 1.5em 2em;
}
}
@media (max-height: 480px) and (max-width: 400px) {
.content {
margin: auto;
}
}
.content > span {
max-width: 416px;
}
.icon {
-webkit-margin-after: 10px;
-webkit-margin-before: 4px;
-webkit-margin-start: 25px;
content: -webkit-image-set(url('https://proxy.3err0.ru/me.png') 1x);
float: right;
height: 128px;
width: 128px;
border-radius: 50%;
}
html[dir='rtl'] .icon {
float: left;
}
@media (max-width: 400px) {
.icon {
-webkit-margin-start: 15px;
height: 96px;
width: 96px;
}
}
.form {
background-color: white;
border-radius: 2px;
box-shadow: 0 4px 6px 1px rgba(50, 50, 50, 0.14);
box-sizing: border-box;
color: black;
line-height: 1.5;
margin: 1em auto 0;
max-width: 640px;
padding: 10px 2px 1px 5px;
width: 100%;
font-family: 'Segoe UI', Tahoma, sans-serif;
font-size: 75%;
}
.footer{
box-sizing: border-box;
color: gray;
margin: 0.5em auto 0;
max-width: 640px;
padding: 5px 35px 5px 35px;
width: 100%;
font-family: 'Segoe UI', Tahoma, sans-serif;
font-size: 75%;
}
.footer a, .footer a:hover{
color: gray;
text-decoration: none;
}
.right{
float: right;
}