-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (113 loc) · 2.05 KB
/
Copy pathstyle.css
File metadata and controls
120 lines (113 loc) · 2.05 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
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@600&family=Poppins:wght@700&display=swap');
*
{
margin:0;
padding: 0;
}
body
{
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: rgb(255, 255, 255);
font-family: 'Comfortaa', cursive;
}
.col
{
margin-top: 20px;
}
.card
{
background:rgba(255, 255, 255, 0.253) ;
border:5px rgb(68, 250, 174);
height: 480px;
border-radius: 30px;
padding: 20px;
box-shadow: 20px 10px 20px rgb(69, 75, 70);
transition: .3s;
}
.card:hover
{
transition: .5s;
transform: scale(1.03);
}
#logo
{
position: absolute;
top: 1%;
right: 5%;
width: 150px;
height: 150px;
transform: rotateY(180deg);
}
img
{
border-radius: 20px;
padding: 10px;
height: 140px;
}
h1
{
font-weight: 900;
font-family: 'Poppins', sans-serif;
color: black;
}
h6
{
font-size: 14px;
color:rgb(174, 91, 177);
letter-spacing: 1px;
font-weight: 400;
}
.card-title
{
margin: 15px;
font-family: 'Poppins', sans-serif;
}
.list-group-item
{
margin-bottom: 10px;
}
.card-link
{
margin: 40px;
padding:10px 20px;
width: 100px;
height: 30px;
background: rgb(226, 145, 145);
color: rgb(255, 255, 255);
font-weight: 600;
font-size: 14px;
letter-spacing: 1.2px;
text-decoration: none;
border-radius: 30px;
transition: .3s;
}
.card-link:hover
{
transition: .5s;
background: lightslategray;
color: rgb(255, 250, 250);
}
#dark
{
background-color: black;
color: rgb(255, 255, 255);
}
#dark .card
{
background: rgba(10, 5, 5, 0);
box-shadow: 0 5px 30px rgb(170, 169, 169);
}
#darklogo
{
color: white;
}
#dark .list-group-item
{
background-color: rgb(170, 165, 165);
border-radius: 20px;
}