-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (65 loc) · 1.5 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.img{
transition: all 2s ease-out;
}
body{
background-color: rgba(85, 85, 85, 0.858);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
perspective: 1000px;
}
.container{
width: 50%;
height: 50%;
}
.card {
transform-style: preserve-3d;
background-color: rgb(225, 185, 246);
box-shadow: 0px 0px 40px rgb(109, 38, 184);
max-width: 475px;
margin: auto;
text-align: center;
}
.h1 {
color: rgba(0, 0, 0, 0.965);
font-size: 40px;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
transition: all 0.75s ease-out;
}
.title{
color: rgb(101, 9, 115);
font-size: 30px;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.univ {
color: rgb(51, 0, 59);
font-size: 20px;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
button {
border: none;
outline: 0;
display: grid;
padding: 10px;
color: rgb(165, 165, 165);
background-color: rgb(83, 24, 36);
text-align: center;
cursor: pointer;
width: 100%;
font-size: 18px;
transition: all 0.75s ease-out;
}
a1,a2,a3,a4{
text-decoration: none;
font-size: 30px;
color: rgb(16, 6, 11);
}
button:hover, a1:hover, a2:hover ,a3:hover ,a4:hover{
opacity: 0.7;
}