forked from LIGMATV/Supermium-Website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
148 lines (127 loc) · 2.17 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
@import url('https://fonts.googleapis.com/css2?family=Figtree:[email protected]&display=swap');
html {
scroll-behavior: smooth;
}
body {
font-family: "Figtree", sans-serif;
text-align: center;
margin: 0;
}
h1 {
font-size: 72px;
letter-spacing: -3px;
}
a {
color: #0066ff;
text-decoration: none;
}
b {
color: #097b8f;
}
span {
color: white;
padding: 8px 20px;
text-align: center;
border-radius: 5px;
font-size: 50px;
border-radius: 50px;
background-image: linear-gradient(90deg, #097b8f, #34a853, #097b8f);
background-size: 300% 100%;
animation: span 20s linear infinite;
transition: opacity 0.3s ease-in-out;
font-weight: 600;
}
@keyframes span {
0% {
background-position: 0 0;
}
50% {
background-position: 400% 0;
}
100% {
background-position: 0 0;
}
}
.logo {
margin-bottom: -10px;
}
.logo:hover {
transform: rotate(360deg);
transition: all 0.6s ease-out;
}
.topnav {
overflow: hidden;
background-color: #ffffff;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
width: 100%;
position: fixed;
top: 0;
}
.topnav a {
float: left;
color: #252525;
text-align: center;
text-decoration: none;
font-size: 17px;
margin: 8px;
cursor: pointer;
transition: 0.2s;
font-weight: 600;
}
.topnav .a {
padding: 14px 12px;
}
.topnav .a:hover {
background-color: #f8f8f8;
color: black;
border-radius: 5px;
}
button {
font-family: "Figtree", sans-serif;
background-color: #0066ff; /* Green */
border: none;
color: white;
padding: 15px 32px;
margin: 2px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 20px;
border-radius: 50px;
cursor: pointer;
font-weight: 600;
}
button:hover {
background-color: #185abc;
}
.mini {
padding: 6px 16px;
text-align: right;
position: fixed;
margin: 12px;
top: 0;
right: 0;
}
.screen {
border-radius: 8px;
}
.card {
text-align: left;
max-width: 500px;
margin: 20px;
border-radius: 24px;
padding: 50px;
}
.container {
display: flex;
flex-wrap: nowrap;
}
.card h2 {
font-size: 22px;
}
footer {
border: 1px solid #e7e7e7;
background-color: #f1f3f4;
text-align: left;
padding: 20px;
}