-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (98 loc) · 1.84 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;400;700&display=swap');
body {
background-color: white;
color: black;
font-family: 'Inter', sans-serif;
overflow-x: hidden;
}
.adaylar {
background-color: #00334d7a;
backdrop-filter: blur(10px);
width: calc(100% - 60px);
color: white;
padding: 10px;
display: block;
border-radius: 10px;
margin: 10px;
}
.adaylar h1 {
font-size: 16px;
}
.adaylar h2 {
font-size: 12px;
}
.adaylar .fr {
display: flex;
flex-wrap: wrap;
}
.adaylar .fr .aday:nth-child(1) {
--renk: green;
}
.adaylar .fr .aday:nth-child(2) {
--renk: red;
}
.adaylar .fr .aday:nth-child(3) {
--renk: purple;
}
.adaylar .fr .aday:nth-child(4) {
--renk: yellow;
}
.adaylar .fr .aday {
flex: auto;
background-color: white;
margin: 10px;
box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.5);
border-radius: 10px;
transition: all 0.2s ease-in-out;
}
.aday:hover {
transform: scale(1.05);
}
.aday:active {
transform: scale(0.95);
}
.adaylar .fr .aday h3 {
display: block;
color: white;
background-color: var(--renk);
margin: 0;
border-radius: 10px 10px 0 0;
padding: 5px;
}
.adaylar .fr .aday .xd {
padding: 10px;
display: flex;
justify-content: space-between;
align-items: center;
}
.adaylar .fr .aday .xd img {
height: 150px;
width: auto;
border-radius: 50%;
}
.adaylar .fr .aday .xd .yuzde {
color: var(--renk);
font-size: 50px;
}
center {
all: unset;
display: flex;
justify-content: center;
}
.logo {
width: auto;
height: 200px;
margin: auto;
}
#debug {
background-color: white;
padding: 10px;
border-radius: 10px;
width: fit-content;
position: relative;
}
#debug button {
position: absolute;
right: 10px;
top: 10px;
}