-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (80 loc) · 1.09 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
body {
font-family: 'Roboto', sans-serif;
font-size: 16px;
color: #333;
}
span{
font-size: 14px;
color: #000;
transition: 0.3s;
}
img{
width: 70px;
border-radius: 35px;
margin: 10px 15px 0 0;
}
table {
margin: 0;
float: right;
}
table tr td:first-child {
padding-right: 5px;
}
a {
text-decoration: none;
color: #000;
font-weight: bold;
transition: 0.3s;
}
a:hover {
color: #1A6DBB;
transition: 0.3s;
}
::-moz-selection {
color: white;
background: #1A6DBB;
}
::selection {
color: white;
background: #1A6DBB;
}
.content {
max-width: 600px;
margin: 0 auto;
}
.intro {
margin: 150px 0 90px 0;
text-align: center;
}
.intro span {
margin-bottom: 10px;
font-size: 22px;
line-height: 40px;
}
.intro span.highlight {
background-color: #333;
color: white;
}
.intro span.highlight-red {
color: purple;
transition: 0.3s;
}
.intro span.highlight-red:hover {
color: blue;
transition: 0.3s;
}
@media (max-width: 360px) {
.intro {
margin: 50px 0 50px 0;
}
.intro span {
font-size: 18px;
line-height: 28px;
}
img{
display: none;
}
table {
float: none;
}
}