-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (101 loc) · 2.83 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
body{ /* Kullanıcının gördüğü ana ekranda bulunan arkaplan dahil tüm nesnelerin ortalandığı düzenlendiği kısım */
background-image: url('img/bg.jpg') ;
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
background-size: cover;
padding: 20px;
position: relative;
margin:0 auto;
text-align:center;
}
button{ /* Butonların şekillendiği kısım biraz ctrl+c ctrl+v kullanmış olabilirim (yalan yok)*/
--b: 1.5px; /* kenarlık kalınlığı */
--s: .30em; /* köşe boyutu */
--color: #970a0a;
background-color: rgba(255, 255, 255, 0.61);
padding: calc(.3em + var(--s)) calc(.9em + var(--s));
color: var(--color);
--_p: var(--s);
background:
conic-gradient(from 90deg at var(--b) var(--b),#0000 90deg,var(--color) 0)
var(--_p) var(--_p)/calc(100% - var(--b) - 2*var(--_p)) calc(100% - var(--b) - 2*var(--_p));
transition: .3s linear, color;
outline: var(--b) solid #0000;
outline-offset: .6em;
font-size: 16px;
border: 0;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
font-weight: bold;
}
button:hover,
button:focus-visible{
background-color: rgba(255, 255, 255, 0.61);
--_p: 0px;
outline-color: var(--color);
outline-offset: .05em;
}
button:active {
background-color: rgba(255, 255, 255, 0.61);
background: var(--color);
color: #fff;
}
input{ /* Oyuncu isimlerinin ve Karakterlerin yazılacağı alanların düzenlemesi */
background-color: #970a0ace;
color: #ffffff;
width: 100px;
height: 25px;
font-size: 15px;
border-radius: 2px;
font-weight: bold;
}
textarea{ /* Operatörün notlarını tutacağı yazı(input) kısmının düzenlemeleri */
background-color: #970a0ace;
color: white;
border-radius: 6px;
font-size: 15px;
font-weight: bold;
}
ul{
padding: 20px;
position: relative;
margin:0 auto;
text-align:center;
width:center center;
}
.table{
margin:0 auto; text-align:center; width:250px;
font-size: 20px;
}
td{
margin:0 auto; text-align:center; width:250px;
background-color: #970a0ace;
border: 1.5px solid rgb(0, 0, 0);
border-radius: 2px;
color : white;
}
p{
font-weight: bold;
font-size: 20px;
color: white;
font-family: 'Courier New', Courier, monospace;
}
.tumKarakterlerNasilOynanir{
background-color: #970a0ace;
color: #ffffff;
width: 150px;
border-radius: 6px;
border-style: groove;
border-color: #ffffff;
}
.oyunhakkinda{
background-color: #ffffffce;
color: #000000;
width: 275px;
border-radius: 6px;
border-style: groove;
border-color: #ffffff;
font-weight: bold;
}