-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (117 loc) · 2.19 KB
/
style.css
File metadata and controls
121 lines (117 loc) · 2.19 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 {
font-family: "Mona Sans", sans-serif;
background: #17224d;
text-align: center;
padding-top: 50px;
color: white;
align-content: center;
justify-content: center;
display: flex;
}
.pfp {
border-radius: 25px;
width: 100px;
}
a {
color: #7f94fd;
text-decoration: none;
font-weight: bold;
background-color: #ffffff00;
border-radius: 100px;
justify-content: center;
padding: 10px 5px;
display: flex;
align-items: center;
gap: 5px;
text-decoration: none;
transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95);
}
.navbar a,
button,
input {
color: #465ac1;
}
button,
input {
text-decoration: none;
font-weight: bold;
background-color: #50b4eb;
border-radius: 100px;
justify-content: center;
padding: 10px 5px;
display: flex;
align-items: center;
gap: 5px;
text-decoration: none;
transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95);
border: solid 0px;
align-self: center;
justify-self: center;
margin: 20px;
}
input {
color: white;
}
a:hover,
button:hover {
text-decoration: underline;
font-weight: bolder;
background-color: #8da6ffec;
padding: 10px 15px;
transition: all 1s cubic-bezier(0.3, 0.94, 0.3, 0.95);
font-size-adjust: 10px;
}
a:hover {
color: #2e4ff6;
}
#about, .code {
border-radius: 25px;
background-color: #3b3c3fe0;
padding: 10px 5px;
justify-self: center;
font-size: 14px;
}
#about {
width: 30%;
}
.code {
font-family: "Cascadia Code", monospace;
padding: 10px;
}
.but {
width: 50%;
border-radius: 100px;
border-color: #24baec;
border: solid 0.5px;
margin-bottom: 25px;
}
.links,
.navbar,
#friendsites {
display: flex;
justify-content: center;
gap: 15px;
}
a img {
width: 25px;
}
.navbar {
background-color: skyblue;
display: flex;
min-width: fit-content;
padding: 5px;
margin: 0 0 10px 0;
align-content: center;
justify-content: center;
justify-self: center;
border-radius: 100px;
}
::placeholder {
color: #b8cfe4;
opacity: 1; /* Stupid stuff for Firefox, or so I've been told */
font-weight: thin;
font-style: italic;
}
.main {
width: 100%;
}