一个简易随机点名器

HTML部分





    
    
    
    Document
    



    

辣鸡点名器

开始随机点名
点名

CSS部分

@charset "UTF-8";
* {
  margin: 0;
  padding: 0; }

.wrapper h1, .ranText, .ranBtn {
  text-align: center; }

.wrapper, .ranText {
  border: 1px solid black; }

body {
  font-family: 'Microsoft YaHei'; }

/**主题框样式*/
.wrapper {
  width: 600px;
  height: 200px;
  margin: 100px auto;
  padding: 50px 0;
  /**标题样式*/ }
  .wrapper h1 {
    font-size: 35px; }

.ranText {
  margin: 30px auto;
  width: 520px;
  height: 50px;
  line-height: 50px;
  font-size: 25px;
  color: gray; }

.ranBtn {
  width: 150px;
  height: 50px;
  margin: 0 auto;
  background: darkorange;
  font-size: 28px;
  line-height: 50px;
  letter-spacing: 0.3em;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  color: white;
  cursor: pointer; }

你可能感兴趣的:(一个简易随机点名器)