-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
107 lines (89 loc) · 1.42 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
/* class-based and id-based Stylings */
.message-two {
display: none;
}
.timer {
animation: blink 0.5s infinite;
font-weight: bold;
}
/* General Stylings */
html,
body {
height: 100%;
}
html {
display: table;
margin: auto;
}
body {
width: 75vw;
display: table-cell;
vertical-align: middle;
font-family: "MiSans Devanagari";
font-family: "MiSans Latin";
background: #000000;
color: #FFFFFF;
font-size: 1.5rem;
}
h1 {
font-size: 5rem;
font-weight: bold;
margin-bottom: 10px;
}
h2 {
font-size: 2rem;
font-weight: normal;
}
h2 span {
font-weight: bold;
margin-right: 1rem;
}
h3 {
font-size: 1.5rem;
font-weight: normal;
color: #AD88F2;
}
section {
display: flex;
flex-flow: row;
flex-wrap: nowrap;
padding-top: 10px;
}
img {
background: white;
padding: 1rem;
width: 10rem;
height: 10rem;
}
section section {
padding-left: 1.25rem;
}
/* @media Queries */
@media (max-width: 768px) {
/* class-based and id-based Stylings */
.message-one {
display: none;
}
.message-two {
display: block;
}
/* General Stylings */
img {
display: none;
}
section section {
padding-left: 0;
}
}
/* @keyframes Queries */
@keyframes blink {
0% {
opacity: 100%;
}
50% {
opacity: 25%;
}
100% {
opacity: 100%;
}
}