-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
148 lines (117 loc) · 3.03 KB
/
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
* {
margin: 0px;
padding: 0px;
}
body {
background: linear-gradient(to top left, #F00 65%, #FFF);
background-attachment: fixed;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
main {
width: 1000px;
margin: 120px auto;
background-color: #FFF;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
padding: 15px;
}
main p { margin-bottom: 10px; }
header {
background-color: #000;
color: #fff;
position: relative;
padding: 10px;
margin-bottom: 20px;
}
[class*="site name"] { font-size: 35px; }
[class*="login info"] {
position: absolute;
text-align: right;
top: 10px;
right: 10px;
}
[class*="login info"] a:link, [class*="login info"] a:visited { color: white; }
[class*="login info"] a:hover { text-decoration: none; }
[class*="site name"] a:link, [class*="site name"] a:visited {
color: white;
text-decoration: none;
letter-spacing: -1px;
font-weight: 600;
}
[class*="intro container"] {
margin: 0px 10px;
text-align: justify;
margin-bottom: 20px;
}
.avatar {
float: left;
margin-right: 20px;
}
.clearfix { clear: both; }
[class*="name block"] h1 {
font-size: 50px;
letter-spacing: 1px;
font-weight: 500px;
}
[class*="contacts block"] { margin-bottom: 15px; }
[class*="contacts list button"] {
padding: 10px 20px;
border: 0px;
background-color: rgb(179, 240, 100);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 20px;
}
[class*="contacts list button"]:hover { text-decoration: underline; }
[class*="timeline block"] {
width: 600px;
margin: 0px 20px;
text-align: justify;
float: left;
}
h2, h3 { margin-bottom: 10px; }
[class*="timeline block"] li { margin-bottom: 20px; }
[class*="secondary info block"] {
width: 340px;
text-align: justify;
float: left;
margin-right: 20px;
}
[class*="secondary info block"] section {
background-color: rgb(168, 240, 100);
padding: 15px;
margin-bottom: 30px;
box-shadow: 0 0 10px rgba(10,10,10,0.5);
}
[class*="secondary info block"] section ul {
margin-left: 20px;
}
footer {
background-color: rgb(168, 240, 100);
text-align: center;
padding: 15px 0px;
font-weight: 700;
margin-top: 20px;
}
footer p { margin-bottom: 0px; }
footer a:link, footer a:visited {
color: #000;
text-decoration: underline;
}
footer a:hover { text-decoration: none; }
[class*="contacts list"] li {
background-color: rgb(168, 240, 100);
margin-bottom: 10px;
}
[class*="contacts list"] li:hover { transform: scale(1.1); }
[class*="contacts list"] img {
float: left;
margin-right: 10px;
padding: 5px;
}
[class*="contacts list"] a:link, [class*="contacts list"] a:visited {
color: #000;
text-decoration: none;
font-size: 20px;
display: block;
height: 35px;
}
[class*="contacts list"] a:hover { text-decoration: underline; }