-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (111 loc) · 2.25 KB
/
style.css
File metadata and controls
129 lines (111 loc) · 2.25 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
122
123
124
125
126
127
128
129
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
height: 150vh;
align-items: center;
background-color:#D8D1E7;
font-family: Arial, sans-serif;
overflow: hidden;
}
canvas {
width: 100vw;
height: 100vh;
/* background-color: rgb(255, 255, 255); */
background-color:#D8D1E7;
position: absolute;
}
section {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-image: linear-gradient(-135deg, #B18BD5, #CDBBF5,#914AD6);
width: 350px;
height: 450px;
border-radius: 20px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
position: relative;
overflow: hidden;
}
.container h2 {
font-size: 32px;
font-weight: bold;
text-align: center;
background-color: transparent;
padding: 20px;
color: #fff;
margin-bottom: 20px;
/* text-shadow: 2px 2px 4px #9526F1; */
text-shadow: 2px 2px 4px #2a292c;
}
.subjects {
display: flex;
justify-content: center;
align-items: center;
height: calc(100% - 80px);
padding: 20px;
}
.subjects ul {
list-style: none;
}
.subjects ul li {
margin-bottom: 20px;
text-align: center;
}
.subjects ul li a {
text-decoration: none;
display: block;
/* background-color: #9526F1; */
background-color:#A268D9;
color: #fefefe;
padding: 15px 25px;
border-radius: 50px;
transition: background-color 0.3s ease;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3) ;
position: relative;
z-index: 1;
overflow: hidden;
}
.subjects ul li a:hover {
/* background-color:#8800F8; */
background-color:#faf6f6;
color: #2a292c;
/* color: #fff; */
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}
/* footer section */
footer {
position: fixed;
bottom: 0;
width: 100%;
padding: 15px 23px;
color: #dbc99c;
text-align: center;
background: #a268d9b2;
}
.footer-section {
line-height: 2.0;
padding: 5px;
}
.footer-section h4 {
font-size: 16px;
color: #fff;
}
.footer-section a {
padding: 8px;
color: #fff;
}
.footer-section h4:hover {
color: #2a292c;
}
.footer-section a:hover {
color: #2a292c;
}