-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUs.css
More file actions
121 lines (117 loc) · 1.82 KB
/
Us.css
File metadata and controls
121 lines (117 loc) · 1.82 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
body{
height: 8vh;
justify-content; center;
margin: 0;
font-family: Helvetica;
}
.img-wrap {
width: 50%
}
.img-wrap img {
width: 30%;
display: flex;
position: absolute;
top: 25%;
left: 48%;
transform: translate(-50%,-50&);
border-radius: 100%;
}
.card {
width: 50%;
float: center-left;
padding:200px 300px;
}
h2 {
font-family: "comic sans ms";
font-size: 25px;
font-style: normal;
font-weight: 300;
text-align: center;
line-height: 30px;
position: absolute;
top: 13%;
left: 25%;
color: #ffffff;
}
p {
font-family: candara;
font-size: 17px;
font-style: normal;
font-weight: 300;
text-align: justify-content;
line-height: 30px;
position: absolute;
top: 20%;
left: 20%;
color: #ffffff;
}
button {
position: absolute;
top: 95%;
left: 50%;
transform: translate(-50%,-50%)
}
button {
width: 82px;
height: 30px;
background: #FFFFFF;
text-align: center;
font-size: 13px;
border-radius: 2px;
overflow: hidden;
border: 1px solid #000000;
}
button:focus {
outline: none;
}
button:before {
content: ' ';
display: block;
position: absolute;
background: #0077b5;
width: 60px;
height: 100%;
top: 0%;
left: 0;
opacity: .5s;
filter: blur(50px);
transform: translateX(-130px) skewX(-15deg);
}
button:after {
content: ' ';
display: block;
position: absolute;
background: #DFD0D0;
width: 30px;
height: 100%;
top: 0;
left: 30;
opacity: 0;
filter: blur(30px);
transform: translate(-100px) scaleX(-15deg);
}
button:hover {
background: #DA2525;
cursor: pointer;
}
.topnav {
overflow: hidden;
background-color: #000000;
}
.topnav a {
float: left;
display: block;
color: white;
text-align: center;
padding: 13px 18px;
text-decoration: none;
font-size: 20px;
}
.topnav a:hover {
background-color: #ff0000;
color: black;
}
.topnav a.active {
background-color: #ffffff;
color: white;
}