-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
103 lines (100 loc) · 1.82 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
/* ==================
* BASE
* ================== */
body {
font-family: 'Sarpanch', sans-serif;
color: hsl(0, 0%, 7%);
background: #f2f1ed;
background: radial-gradient(hsl(204, 86%, 93%), hsl(204, 86%, 63%));
}
.outer-container {
display: flex;
align-items: center;
flex-direction: column;
height: 100vh;
justify-content: center;
}
/* ==================
* APP
* ================== */
.countdown {
margin: 5px 0 30px;
}
h1 {
text-align: center;
font-size: 18px;
color: hsl(204, 86%, 43%);
}
h2 {
font-size: 120px;
width: 390px;
line-height: 1;
text-align: center;
}
h3 {
font-size: 28px;
display: flex;
align-items: baseline;
justify-content: center;
}
h3 span {
width: 70px;
border-bottom: 2px solid hsl(348, 100%, 71%);
margin-left: 15px;
text-align: center;
}
.time {
display: flex;
justify-content: center;
}
.columns {
margin-left: 0;
margin-right: 0;
}
/* ==================
* SOCIAL MEDIA
* ================== */
.social-media-footer {
--font-color: hsl(204, 86%, 99%);
--font-size: 0.8rem;
margin-top: 1.9375rem;
}
.social-columns {
display: flex;
justify-content: center;
padding-bottom: 0.625rem;
font-size: var(--font-size);
color: var(--font-color);
width: 100%;
}
.social-columns .column {
padding: 0.4rem;
text-align: center;
/* to work with bulma */
display: flex;
align-items: center;
/* justify-content: center; */
}
.social-columns a {
text-decoration: none;
color: var(--font-color);
/* to work with bulma */
padding-left: 2px;
}
.social-columns a:hover {
text-decoration: underline;
}
/* GITHUB */
.github-code {
color: var(--font-color);
font-size: 0.8rem;
text-align: center;
margin-bottom: 0.625rem;
}
.github-code a {
text-decoration: none;
color: var(--font-color);
}
.github-code a:hover {
text-decoration: underline;
}