AddTestPaper.vue 694 Bytes
<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>