-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocs-style.css
131 lines (112 loc) · 2.11 KB
/
docs-style.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
@charset "UTF-8";
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: black;
}
body {
background: linear-gradient(to bottom, #eee 0%, #ccc 50%, #eee 100%) fixed;
display: flex;
}
ul {
list-style-type: none;
margin: 0;
padding-left: 0;
}
h1 {
font-size: 23px;
}
h2 {
font-size: 17px;
}
p {
font-size: 15px;
}
a {
text-decoration: none;
font-size: 15px;
color: #e64c65;
}
a:hover {
text-decoration: underline;
}
h1, h2, p, span{
color: black;
}
.scnd-font-color {
color: #9099b7;
}
.titular {
display: block;
line-height: 60px;
margin: 0;
text-align: center;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.button {
display: block;
width: 175px;
color: black;
line-height: 50px;
font-size: 16px;
font-weight: 700;
text-align: center;
margin: 10px auto;
border-radius: 5px;
-webkit-transition: background .3s;
transition: background .3s;
}
.button:hover {
text-decoration: none;
background-color: #3468af;
color: white;
}
.block {
display: flex;
flex-direction: column;
justify-content: center;
margin-bottom: 25px;
background: linear-gradient(to bottom, #adadad 0%, #ccc 50%, #496f6f 100%) fixed;
border-radius: 5px;
padding: 20px;
height:95vh;
}
.block *{
display: flex;
flex-direction: column;
align-self: center;
}
.block p, .list{
max-width: 70%;
}
.block li{
align-self: flex-start;
max-width: 100%;
}
.left-column{
flex-direction: column;
justify-content: flex-start;
margin: 0 10px 10px;
width: 30%;
}
.left-column *{
height: auto;
margin-bottom: 5px;
padding: 7px;
}
.left-column .menu{
position: fixed;
}
.left-column .menu li:hover{
background: linear-gradient(to bottom, #adadad 0%, #ccc 50%, #496f6f 100%) fixed;
border: 1px solid #2196F3;
}
.left-column .menu li li:hover{
background: linear-gradient(to bottom, #eee 0%, #a2a2a2 50%, #eee 100%) fixed;
border: none;
}
.right-column{
width: 70%;
}