webs/ultra-super-stylish-reversi/main.css

51 lines
767 B
CSS
Raw Normal View History

2022-11-01 15:19:37 +09:00
body{
background-color:#cd0000
}
#flag{
background-image:url(svru.svg)
}
h1{
color:#ffd700;
background-color:#cd0000;
}
#ussr{
font-size:200%;
}
#table{
background-color:transparent;
margin-left:30vw;
2022-11-02 08:44:30 +09:00
width: 70vmin;
height:70vmin;
2022-11-01 15:19:37 +09:00
}
#table td{
border: 1px solid white;
2022-11-02 08:44:30 +09:00
/*width:10vmin; height:10vmin;*/
2022-11-01 15:19:37 +09:00
}
#flex{
padding-left:1vw;
2022-11-02 17:32:43 +09:00
}
#flextext{
2022-11-01 15:19:37 +09:00
color:#ffd700;
2022-11-02 17:32:43 +09:00
font-size:200%;
font-weight: 800;
max-width: min-content;
2022-11-01 15:19:37 +09:00
}
.stone{
border-radius:100%;
width:100%;height:100%
}
.yellow{
background-color:#ffd700;
}
.blue{
background-color:#0091fa;
}
.flag{
background-image:url(tools.svg);
background-size: cover;
width:100%;height:100%
}
img{
margin-top: 5vh;
width: 100%;
}