-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
126 lines (110 loc) · 2.2 KB
/
main.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
:root{
--columns-row: 16;
background-color: #bd443f;
font-family: 'Dancing Script', cursive;
}
.header{
width: 100%;
display: inline-block;
text-align: center;
font-size:1.3em;
color: rgba(255, 217, 0, 0.623);
}
.container{
display: flex;
flex-direction: column;
flex: 1;
justify-content: space-evenly;
align-items: center;
margin: 0 auto;
}
.menu{
display: flex;
flex-direction: column;
gap: 8px;
width:20em;
justify-content: center;
align-items: center;
}
#grid{
display: grid;
grid-template-columns: repeat(var(--columns-row), 1fr);
grid-template-rows: repeat(var(--columns-row), 1fr);
width: 500px;
height: 500px;
border: 5px;
margin-bottom: 20px;
background-color: rgb(218, 210, 210);
}
.slider {
-webkit-appearance: none;
width: 100%;
height: 15px;
border-radius: 5px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
border-radius: 50%;
background: #04AA6D;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 25px;
height: 25px;
border-radius: 50%;
background: #04AA6D;
cursor: pointer;
}
#slidersize {
font-size: 1.8em;
color: rgba(255, 217, 0, 0.623);
}
.footer {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
width: 100%;
padding: 5px;
font-size: 20px;
font-family: 'Times New Roman', Times, serif;
}
.fa-github {
font-size: 24px;
transition: transform 0.3s ease-in-out;
color: black;
}
.fa-linkedin {
font-size: 24px;
transition: transform 0.3s ease-in-out;
color: #2867B2;
}
button{
background-color: #bd443f;
border: 2px solid black;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.active{
background-color: gray;
}
input[type="color"] {
width: 5em;
height: 5em;
padding: .5em;
background-color: transparent;
}