Welcome to mirror list, hosted at ThFree Co, Russian Federation.

layout.css « css « static - github.com/cfrome77/hugo-theme-sky.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6c7df24969db9dc03efaee65ce012b507a41743 (plain)
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
/* ------------------------------------------------------------------ */
/* About Section
/* ------------------------------------------------------------------ */

#about {
   padding-top: 96px;
   padding-bottom: 66px;
   overflow: hidden;
}

#about a, #about a:visited  { color: #000; }
#about a:hover, #about a:focus { color: #ff8c00; }

#about h2 {
   font: 22px/30px 'opensans-bold', sans-serif;
   color: #000;
   margin-bottom: 12px;
}
#about p {
   line-height: 30px;
   color: #7A7A7A;
}
#about .profile-pic {
   position: relative;
   width: 120px;
   height: 120px;
   border-radius: 100%;
}
#about .contact-details { width: 41.66667%; }
#about .download {
   width: 58.33333%;
   padding-top: 6px;
}
#about .main-col { padding-right: 5%; }
#about .download .button {
   margin-top: 6px;
   background: #444;
   color: #fff;
}
#about .download .button:hover {
   background: #444;
   color: #ff8c00;
}
#about .download .button i {
   margin-right: 15px;
   font-size: 20px;
}

/* ---------------------------------------------------------------- */
/* Social Links
/* ---------------------------------------------------------------- */
.social {
   margin: 24px 0;
   padding: 0;
   font-size: 1.5 em;
   text-shadow: 0px 1px 2px rgba(0, 0, 0, .8);
}
.social li {
   display: inline-block;
   margin: 0 15px;
   padding: 0;
}
.social li a { color: #000; }
.social li a:hover { color: #FFA500; }

/* ---------------------------------------------------------------- */
/* Links
/* ---------------------------------------------------------------- */
a {
    color: #ff8c00;
    word-wrap: break-word;

    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}

a:hover,
a:focus {
    color: #FF8c00;
    text-decoration: none;
    outline: 0;
}

a:before,
a:after {
    -webkit-transition: color 0.1s ease-in, background 0.1s ease-in;
    -moz-transition: color 0.1s ease-in, background 0.1s ease-in;
    -ms-transition: color 0.1s ease-in, background 0.1s ease-in;
    -o-transition: color 0.1s ease-in, background 0.1s ease-in;
    transition: color 0.1s ease-in, background 0.1s ease-in;
}

 hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/* ------------------------------------------------------------------ */
/* Footer
/* ------------------------------------------------------------------ */
.footer {
  color: #323232;
  padding: 0.7rem 1.5rem; }
  .footer .copyright {
    text-transform: uppercase;
    text-align: center;
    font-size: 0.7rem; }

@media screen and (min-width: 500px) {
  html {
    font-size: calc(15px + 7 * ((100vw - 500px) / 900)); } }
@media screen and (min-width: 1400px) {
  html {
    font-size: 22px; } }
@media (max-width: 480px) {
  .page-heading .page-title {
    font-size: 3.5rem;
    line-height: 1.2; }