-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
132 lines (102 loc) · 1.79 KB
/
main.css
File metadata and controls
132 lines (102 loc) · 1.79 KB
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
body {
font-family: sans-serif;
background: #f9f8f1;
font-size: 16px;
text-transform: lowercase;
color: black;
}
h1 {
font-weight: 400;
}
h2 {
font-size: 16px;
font-weight: 500;
}
h3 {
font-size: 16px;
text-transform: lowercase;
}
p {
}
ul {
list-style-type: square;
position: relative;
left: -22px;
}
a {
opacity: 1;
transition: 0.2s ease-in-out;
}
a:hover {
color: lightgrey;
transition: 0.1s ease-in-out;
}
.container {
margin: 30px;
}
.content {
position: relative;
top: 200px;
margin: 20px;
}
.point {
width: 10px;
height: 10px;
background-color: black;
}
.begin {
border-radius: 10px;
}
.wrap {
position: relative;
display: flex;
align-items: center;
margin: 0px auto;
}
.line {
content: '';
flex: 1;
height: 1px;
background-color: #000;
display: block;
width: 100%;
transform: scaleX(0);
transform-origin: left;
animation: slideIn 2s ease-in-out infinite;
animation-delay: 2s;
z-index: 10;
}
.line2 {
content: '';
flex: 1;
height: 1px;
background-color: #CCC;
display: block;
transform: scaleX(2);
transform-origin: right;
z-index: 1;
}
@keyframes slideIn {
0% {transform:scaleX(0);}
50% {transform:scaleX(0.5);}
80% {transform:scaleX(0); transform-origin: right;}
100% {}
}
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.container { margin: 30px 30px 30px 30px;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.container { margin: 50px 80px 30px 80px;
}
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.container { margin: {50px 100px 30px 100px;
}
}
footer {
opacity: 20%;
}