-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
133 lines (96 loc) · 2.28 KB
/
index.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
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
130
131
132
133
body{
margin: 0;
padding: 10px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: bold;
background-image: url(/aboutMeImages/granite.avif);
background-repeat: no-repeat;
background-size: cover;
box-sizing: border-box;
text-align: center;
color: rgb(255, 255, 255);
font-size: larger;
}
img{
width: 30%;
border-radius: 70% 30% 23% 77% / 65% 37% 63% 35% ;
border: 4px solid rgb(164, 161, 180);
}
ul{
list-style: none;
}
.email-el{
margin: 10px;
}
button{
height: 3em;
border-radius: 5%;
border-style: double;
}
/* :root {
--superhero: 'Bangers', cursive;
--fantasy: 'MedievalSharp', cursive;
--space: 'Orbitron', sans-serif;
--military: 'Black Ops One', cursive;
--romantic: 'La Belle Aurore', cursive;
--scary: 'Creepster', cursive;
--cowboy: 'Rye', cursive;
--regular: sans-serif;
--fantasy: 'MedievalSharp', cursive;
--font: var(--regular);
--sharp: 0;
--soft: 10px;
--round: 100px;
--image: var(--soft);
--background: #f5f5f5;
--text: #222222;
--light: var(--background);
--dark: var(--text);
}
body, html {
margin: 0;
padding: 10px;
background: var(--background);
color: var(--text);
font-family: var(--font);
align-items: center;
}
img {
width: 30%;
border-radius: 70% 30% 23% 77% / 65% 37% 63% 35% ;
border: 4px solid var(--text);
}
a {
color: var(--text);
}
input {
display: block;
margin: 20px 0 0;
width: 160px;
box-sizing: border-box;
padding: 4px 8px;
border-width: 1px;
border-style: solid;
border-color: var(--text);
color: var(--text);
background: none;
border-radius: var(--image);
font-family: var(--font);
}
::placeholder {
color: var(--text);
}
button {
border-radius: var(--image);
padding: 5px 10px;
border: none;
background: var(--text);
color: var(--background);
font-weight: bold;
box-sizing: border-box;
display: block;
margin: 8px 0;
cursor: pointer;
font-family: var(--font);
width: 160px;
} */