Blame view

src/views/TestPaper/AddTestPaper.vue 694 Bytes
d1837e7a   wangming   测试
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
  <template>
  	<div class="app-container">
  		<div style="text-align: center;width: 680px;margin: auto;margin-top: 200px">
  			<ul class="AddUl">
  				<li>添加专业试卷</li>
  				<li>添加测评试卷</li>
  			</ul>
  		</div>
  		
  	</div>
  </template>
  
  <script>
  </script>
  
  <style>
  	.AddUl {
  		list-style: none;
  		padding: none;
  		text-align: center;
  	}
  	.AddUl li {
  		float: left;
  		background-color: #0077AA;
  		width: 300px;
  		height: 200px;
  		line-height: 200px;
  		text-align: center;
  		margin-right: 10px;
  		color: #FFF;
  		font-size: 30px;
  		font-weight: bold;
  		border-radius: 10px;
  		box-shadow: 0 0 10px #808080;
  		cursor: pointer;
  	}
  	.AddUl li:hover{
  		background-color: #000000;
  	}
  </style>