-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (98 loc) · 1.31 KB
/
style.css
File metadata and controls
113 lines (98 loc) · 1.31 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
:root{
--bg:#0f172a;
--text:#fff;
--card:#1e293b;
--accent:#38bdf8;
}
.light{
--bg:#f8fafc;
--text:#0f172a;
--card:#fff;
--accent:#0ea5e9;
}
body{
margin:0;
font-family:Arial;
background:var(--bg);
color:var(--text);
}
/* NAVBAR */
nav{
display:flex;
justify-content:space-between;
padding:20px 40px;
background:#020617;
}
nav a{
color:white;
margin-left:20px;
text-decoration:none;
}
nav a:hover{
color:var(--accent);
}
/* CURSOR */
.cursor{
position:fixed;
width:15px;
height:15px;
background:gold;
border-radius:50%;
box-shadow:0 0 15px gold, 0 0 30px gold;
pointer-events:none;
z-index:999;
}
/* SECTIONS */
section{
padding:80px;
text-align:center;
}
/* CARD */
.card{
background:var(--card);
padding:20px;
border-radius:12px;
transition:.3s;
}
.card:hover{
transform:scale(1.05);
box-shadow:0 0 20px #38bdf8;
}
/* BUTTON */
.btn{
background:var(--accent);
padding:10px 20px;
color:white;
text-decoration:none;
border-radius:6px;
display:inline-block;
margin-top:10px;
}
.btn:hover{
background:white;
color:black;
}
/* CONTACT FORM */
form{
max-width:400px;
margin:auto;
background:var(--card);
padding:20px;
border-radius:10px;
}
input,textarea{
width:100%;
margin:10px 0;
padding:10px;
border:none;
border-radius:6px;
}
/* SOCIAL */
.social a{
font-size:30px;
margin:10px;
color:white;
}
.social a:hover{
color:#38bdf8;
}