forked from vishaltewatia/Thankyoubook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuntoldcoding.css
57 lines (55 loc) · 1.04 KB
/
untoldcoding.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
* {
margin: 0;
padding: 0;
}
.container {
height: 100vh;
width: 100vw;
background: #000000;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
position: relative;
color: white;
}
.tag {
height: 80px;
width: 435px;
background: linear-gradient(rgb(85, 183, 225), rgb(4, 82, 146));
border-radius: 10px;
color: #ffffff;
font-family: helvetica;
line-height: 80px;
text-align: center;
font-weight: 900;
font-size: 50px;
letter-spacing: 5px;
text-transform: uppercase;
margin-top: -50px;
box-shadow: 0 0 10px -3px #ffffff inset;
}
/*.tag:after {
content: "Bestfriend";
}
*/
.container .tag :hover {
color: rgb(247, 247, 62);
}
.ribbon {
width: 100%;
height: 20px;
background: rgb(255, 255, 255);
box-shadow: 0 0 10px -3px #333;
}
.tag a {
color: white;
text-decoration: none;
}
p {
position: absolute;
color: rgb(85, 183, 225);
top: 60%;
font-family: "Courier New", Courier, monospace;
font-weight: 500;
}